JSON Path Finder — Extract All Paths from JSON

Extract all paths from a JSON object. Filter and copy JSONPath expressions. Free online tool for developers.

$
object
$.store
object
$.store.name"CodeUtilo Shop"
string
$.store.books
array
$.store.books[0]
object
$.store.books[0].title"JavaScript Guide"
string
$.store.books[0].price29.99
number
$.store.books[0].inStocktrue
boolean
$.store.books[1]
object
$.store.books[1].title"CSS Mastery"
string
$.store.books[1].price24.99
number
$.store.books[1].inStockfalse
boolean
$.store.location
object
$.store.location.city"Prague"
string
$.store.location.country"CZ"
string

What is JSONPath?

JSONPath is an expression language for navigating JSON structures. The root is represented by $, object properties by dot notation (.key), and array elements by bracket notation ([0]).

Use Cases

JSONPath is used in API testing (Postman, REST Assured), data transformation (jq), configuration files, and log analysis. This tool helps you find the exact path to any value in your JSON data.