JSON Pointer Tester

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

Resolved value will appear here...

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.

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