Encrypt Online
Choose theme
Privacy All tools run entirely in your browser.

JSON Pointer Resolver

Resolve one exact JSON Pointer path and inspect the value it actually matches

Safety note: JSON Pointer resolution stays in your browser. This tool resolves RFC 6901-style pointers against pasted JSON only; it does not fetch remote documents or follow external references.
Resolve a JSON PointerPaste a JSON document, enter the exact pointer, and see the resolved value plus its type immediately
Use an empty pointer for the whole document, or /path/to/value for one exact location.
Escape ~ as ~0 and / as ~1 inside pointer tokens.
What JSON Pointer Resolves

JSON Pointer identifies one exact location inside a JSON document. It is path-like, but it is stricter than “dot notation” and only works if every token matches the real object key or array index.

Resolve One Exact JSON Location
  1. Paste a valid JSON document.
  2. Enter the pointer you want to resolve, such as /customer/emails/1.
  3. Click Resolve pointer and compare the result value and type summary.
Why Pointer Escapes Matter

Pointer tokens use / as a separator, so a real / in a key must become ~1. A real ~ must become ~0. If those escapes are wrong, the pointer looks close but still resolves to nothing.