Skip to content

JSON Pointer Tester

Test RFC 6901 JSON Pointer expressions against your JSON data. JSON Pointers use /-separated paths like /store/book/0/title.

Input

json
loading editor…

Paste JSON Pointer first (e.g. /path/to/value), then your JSON...
or drop a file anywhere in this pane

Output

json

Resolved value will appear here...
press to evaluate pointer

What Is JSON Pointer?

JSON Pointer (RFC 6901) is a standard syntax for identifying specific values in a JSON document. Pointers use slash-separated tokens (e.g., /store/book/0/title) and are used in JSON Patch, OpenAPI, and JSON Schema.

  • JSON Patch: Targeting values for patching.
  • OpenAPI: Referencing schema components.
  • JSON Schema: Pointing to sub-schemas.

How to Test a JSON Pointer

  1. Enter the JSON Pointer starting with / on the first line.
  2. Paste your JSON data below the pointer.
  3. Click Evaluate Pointer to see the resolved value.

Frequently Asked Questions

How are special characters escaped?

Use ~0 for tilde and ~1 for forward slash in pointer tokens.

What happens if the pointer is invalid?

The tool returns an error message indicating which part of the path could not be resolved.

Is this tool safe?

Yes. Processing is 100% client-side.

Related Tools