1. Extracting paths for API testing
QA EngineerBackground
A QA engineer is writing automated tests for an e-commerce API that returns a deeply nested JSON response containing store inventory.
Problem
Manually writing and verifying JSONPath expressions for specific nested items (like the price of the second book) is error-prone and time-consuming.
How to use
Paste the API response into the JSON Input, set Expand Depth to 3, and click the target node in the visual tree to copy its path.
{"searchTerm": "price", "expandDepth": 3}Outcome
The engineer instantly copies $.store.book[1].price to their clipboard, ensuring accurate test assertions without manual syntax guessing.