Learn

JSONPath cheatsheet

Direct answer: A JSONPath cheatsheet covers root ($), child access (.key), descendants (..key), wildcards (*), array slices, and filters. Use it to extract nested API fields without writing custom parsers.

Examples

All values under data

$.data.*

Recursive search

$..id

Array wildcard

$.items[*].name

FAQ

Where can I practice JSONPath?

Use BracketView’s JSONPath query tool with a sample payload and iterate live.

Try it in BracketView