JSON Parser Pro
Parser
Diff
Schema
JWT
Base64
CSV
More
Search
⌘K
JSONPath Query Tester
(Test JSONPath expressions against your JSON)
Upload
$ Path
4 results
JSON Input
{ "store": { "name": "Acme Books", "books": [ { "title": "The Pragmatic Programmer", "author": "Hunt & Thomas", "price": 39.95, "inStock": true }, { "title": "Clean Code", "author": "Robert Martin", "price": 29.99, "inStock": true }, { "title": "Design Patterns", "author": "GoF", "price": 44.95, "inStock": false }, { "title": "Refactoring", "author": "Fowler", "price": 34.99, "inStock": true } ], "location": { "city": "San Francisco", "country": "USA" } }, "members": 1240 }
Example Queries
All books
First book
Last book
All titles
Books in stock
Cheap books (< $35)
First 2 books
Store name
All prices
Deep search author
Results
Copy all
0
"The Pragmatic Programmer"
1
"Clean Code"
2
"Design Patterns"
3
"Refactoring"
$
root
.key
child
..
recursive
[*]
all
[n]
index
[n:m]
slice
[?(@.x==v)]
filter