HomeToolsJSON Path FinderBack to ToolsJSON Path FinderFind and extract values from JSON data using JSONPath expressionsCategory:JSON ToolsJSONPath ExpressionQueryClearExamples: $ (root), $.name, $.users[0], $.items.*Input JSONQuery ResultsEnter JSON and a JSONPath expression, then click QueryHow to use:Paste your JSON in the input fieldEnter a JSONPath expression (e.g., $.name, $.users[0], $.items.*)Click "Query" to extract matching valuesCopy the results for use in your codeJSONPath Examples:$ - Root element$.name - Get "name" property$.users[0] - First item in users array$.items.* - All items in array