Encrypt Online
Theme

JSON Pointer Resolver

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

Safety note: Resolve RFC 6901 JSON Pointer paths against the supplied JSON document. This tool 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.