JSONPath Tester
Evaluate JSONPath expressions and inspect matching values and paths.
Input
Results (0)
About
Test JSONPath queries against JSON and see each result with its normalized path and JSON Pointer.
Key Features
- $ and recursive descent
- Array indexes, wildcards, and filters
How to use
- 1Paste valid JSON.
- 2Enter a JSONPath expression and evaluate it.
Example
Input
$.users[?(@.active)].name
{"users":[{"name":"Ada","active":true}]}Output
Ada — $["users"][0]["name"]Limitations
- Input is limited to 2,000,000 characters to keep the browser responsive.
- Uses JSONPath Plus syntax with script evaluation disabled.
- All input is processed locally in your browser and is never uploaded to ToolHub.
Last reviewed: