Demo: inspect an API payload as a tree
JSON trees are useful when an API response is too nested to read as raw text. A visual preview makes it easier to find arrays, optional fields, and places where naming is inconsistent.
- Expand one branch at a time for large payloads.
- Check whether numeric-looking IDs are strings or numbers.
- Use the preview before writing JSONPath or jq filters.
{
"order": {
"id": "ord_123",
"items": [{"sku": "A1", "qty": 2}],
"status": "paid"
}
}