πŸ” Utilities

JSON Path & jq Query Tester

Paste JSON and test dot-notation, bracket-notation, array filters, recursive descent and jq-style expressions live in your browser. Great for debugging API responses, kubectl output and config files.

πŸ“„ JSON Input
πŸ”Ž Query
βœ… Result
Enter a query above to see results…
πŸ“‹ Query Cheatsheet
Note: This tool implements a subset of JSONPath and dot-notation syntax that covers the most common use cases. For full jq or JSONPath spec compliance, use the respective CLI tools (jq, jsonpath) or language libraries.
πŸ“– How to Use This Tool
β–Ό
1
Paste JSON data in the left panel
2
Enter query: $.store.book[0].title
3
Choose mode: dot notation, JSONPath, or jq
4
Results highlight matched values
πŸ“ Examples
Array
Input: $.users[0].name
Output: Returns first user's name