JSONPath Query Tool

Example:
JSON: {"users":[{"name":"John"},{"name":"Jane"}]} Query: $.users[*].name Result: ["John","Jane"]
Use JSONPath to query and extract data from complex JSON documents. Similar to XPath for XML.
Try JSON Lab →

FAQs

What is JSONPath?

A query language for JSON, like XPath for XML. Uses $ for root, . for child, [*] for all elements.