Ctrl + K
HomeJSON ToolsJSONPath Tester
Free Developer Tool

JSONPath Tester

Evaluate JSONPath queries and instantly inspect matching results.

Examples:
$.store.book[*].author
$.store.book[0]
$.store.book[*].price
$..price
$.store.book[?(@.price < 10)]
$.store.*

What is JSONPath Tester?

JSONPath allows you to query and extract values from complex JSON structures.

How to use

  1. Paste JSON data.
  2. Enter a JSONPath query.
  3. View matching results.

Features

  • JSONPath evaluation
  • Result highlighting
  • Nested data support
  • Fast testing
  • Developer friendly

Example

Input
{
  "users": [
    { "name": "John" },
    { "name": "Jane" }
  ]
}
Output
$.users[*].name
["John","Jane"]

FAQ

What is JSONPath?

JSONPath is a query language for extracting data from JSON documents.

Can I test nested paths?

Yes. Complex nested queries are supported.

Is the tool free?

Yes. Completely free to use.