Find the path to any JSON value. Stop counting brackets.
Paste or drop a JSON blob, click any value, and get its path two ways —
JSONPath for jq and query tools, and a
JS accessor to paste straight into code. Copy either.
It all runs in your browser — your JSON is never uploaded.
FAQ
Is my JSON uploaded?+
No. Your JSON is parsed and inspected entirely in your browser — it is never sent to a server. We do count anonymous, aggregate usage on our own server (a page view, that a blob was analyzed) — never your JSON, its keys, or its values.
What's the difference between the two paths?+
JSONPath ($.users[0].name) is what query tools and many libraries expect. The JS accessor (users[0].name) is what you paste into code after your own variable, e.g. data.users[0].name. Keys that aren't valid identifiers (dots, spaces, quotes) are bracket-quoted automatically.
Do I need an account?+
No login, no email, no payment. This one is free.