Publish JSON data as an interactive explorer.
/ember-publish-json API response from the users endpointFeatures
The explorer provides:
- Tree view — expand/collapse nested objects and arrays
- Graph view — visualise relationships between keys as a node graph
- Search — filter nodes by key or value
- Multi-payload tabs — compare multiple JSON payloads side by side
- Copy — click any node to copy its value or JSON path
Payload Format
The JSON explorer supports a multi-payload format for comparing data:
{
"payloads": [
{ "label": "Request", "data": { "method": "POST", "url": "/api/docs" } },
{ "label": "Response", "data": { "id": "abc123", "status": "published" } }
]
}Each payload becomes a tab. If your JSON isn't in this format, it's automatically wrapped as a single payload.
Examples
/ember-publish-json the response from our /api/users endpoint
/ember-publish-json compare the request and response for order creation
/ember-publish-json package.json