InsightHub

JSON Path Finder

Find and extract values from JSON data using JSONPath expressions

Category:JSON Tools

Examples: $ (root), $.name, $.users[0], $.items.*

Enter JSON and a JSONPath expression, then click Query

How to use:

  • Paste your JSON in the input field
  • Enter a JSONPath expression (e.g., $.name, $.users[0], $.items.*)
  • Click "Query" to extract matching values
  • Copy the results for use in your code

JSONPath Examples:

  • $ - Root element
  • $.name - Get "name" property
  • $.users[0] - First item in users array
  • $.items.* - All items in array