The Tool Hive LogoThe Tool Hive

Tools

Network Tools

Text Tools

Data Tools

Design Tools

Development Tools

Code Tools

Security Tools

Utility Tools


About

Categories

  1. Home
  2. Tools
  3. Data Tools
  4. Jsonpath Evaluator
The Tool Hive Logo

The Tool Hive

A comprehensive collection of free, browser-first tools for developers. Network requests only occur when a tool makes them explicit.

Tools

Text ToolsData ToolsDesign ToolsNetwork ToolsDevelopment Tools

Resources

AboutPrivacy PolicyTerms of Service

Contact Us

Having any issues? Wish to request a tool or feature? Contact us here.

Email Us

© 2026 The Tool Hive. All rights reserved.

PrivacyTermsCookies

JSONPath Evaluator

Query and filter JSON live with JSONPath — see matched values and their paths as you type.

JSONPATH QUERY

3 matches

$

The root object / array

.key · ['key']

Child by property name

[0] · [-1]

Array index (negatives count from end)

[*] · .*

Wildcard — all children

..

Recursive descent (any depth)

[1:4] · [::-1]

Slice [start:end:step]

[0,2] · ['a','b']

Union of indices / names

[?(@.n > 5)]

Filter — keep where predicate is true

== != < > <= >=

Comparison operators

&& · ||

Combine predicates

JSON SOURCE

MATCHES

3

$['users'][0]['name']

"Alice"

$['users'][1]['name']

"Bob"

$['users'][2]['name']

"Carmen"

Runs entirely in your browser — nothing is uploaded. Supports child access, wildcards, recursive descent, slices, unions and filter predicates.