JSON Path Extractor
Extract data from JSON using JSONPath queries
JSON Input
Enter your JSON data to query
JSONPath Query
Specify the path to extract
How to Use JSONPath
Path Syntax
- $ - Root object
- . - Child member access
- [n] - Array index (0-based)
- .* - All members (wildcard)
Examples
- $.store.owner.name
- $.store.books[0].title
- $.store.books[*].price
- $.store.*