Ctrl + K
HomeJSON ToolsJSON Pointer Tester
Free Developer Tool

JSON Pointer Tester

Evaluate JSON Pointer paths against JSON documents and inspect the selected values.

What is JSON Pointer Tester?

The JSON Pointer Tester evaluates RFC 6901 JSON Pointer expressions and displays the referenced value from a JSON document.

How to use

  1. Paste your JSON document.
  2. Enter a JSON Pointer.
  3. Run the evaluation.
  4. View the selected value.

Features

  • RFC 6901 support
  • Instant evaluation
  • Nested object support
  • Fast lookup

Common Use Cases

  • Testing JSON Pointer paths
  • Learning JSON Pointer
  • Debugging APIs
  • Extracting values

Example

Input
Value:
{
  "name": "John"
}
    
Pointer:
/name
Output
"John"

FAQ

Does it support RFC 6901?

Yes. Standard JSON Pointer syntax is supported.

Can nested values be accessed?

Yes. Nested paths are fully supported.

Does it modify the JSON?

No. The original document remains unchanged.