Loading...

JSON Query Explorer

Tool for querying and exploring JSON data with JavaScript expressions

JSON Input
Query Result
Start with data to refer to the JSON object. Use JavaScript expressions.

About JSON Query Explorer

This tool allows you to query and extract data from JSON using standard JavaScript expressions. The JSON data is assigned to a variable called data, which you can use in your queries.

Example queries:

  • data.users.filter(user => user.age > 30) - Get users older than 30
  • data.products.map(p => p.name) - Extract names only
  • data.orders.reduce((sum, order) => sum + order.total, 0) - Calculate total value
  • Object.keys(data.settings) - Get all keys from settings object

You can use all valid JavaScript expressions, including filter, map, reduce, find, and standard object methods.