JSONPath

JSONPath getting started guide

JSONPath gives you a compact way to point at data inside nested JSON documents.

Start with the root

Every JSONPath starts at $. Add dot selectors for object properties and bracket selectors for arrays or special keys.

Use wildcards carefully

Wildcards and descendants are powerful, but they can return many matches. Check the result paths before using them in code.

Open JSONPath

FAQ

What does $ mean?

$ is the root JSON value that the query starts from.