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 Pointer
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
- Paste a valid JSON document.
- Enter the pointer you want to resolve, such as
/customer/emails/1. - 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.