New

JSONPath Tester

Runs in browser

Evaluate JSONPath expressions against JSON in the browser. See match counts, copy results as JSON, and use presets for common queries.

JSONPath Tester tool

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Results3 matches found
[
  "Alice",
  "Bob",
  "Carol"
]

Chain to another tool

Send this output to another tool instantly — no copy-paste needed.

Produce output above to enable chaining.

How to use

  1. Paste JSON

    Start from the sample document or replace it with your own — the gutter shows line numbers.

  2. Enter JSONPath

    Type an expression or pick a preset chip to fill common patterns.

  3. Review matches

    See how many values matched, copy the results array, and use the gutter highlight as a hint for the first match line.

Examples

  • User names

    All name fields under users.

    Input
    JSON + $.users[*].name
    Output
    [ "Alice", "Bob", "Carol" ]

Frequently asked questions

Is my JSON uploaded?
No. Evaluation runs entirely in your browser using jsonpath-plus.
Which JSONPath dialect is used?
The jsonpath-plus implementation with common JSONPath operators; very exotic extensions may differ from other tools.

You might find these useful too.