Format a captured JSON API response with readable body, keys, and metadata.
The frame below runs the same code as this page, in the reader's own browser. Nothing is sent to us, and nothing is sent to you.
Pick a dark background and the text and panels follow it, so the frame stays readable on a dark page.
A response body is parsed as JSON, then reserialized with indentation, sorted keys, or compact separators while status, headers, and body remain separate. Invalid JSON is reported rather than silently repaired.
{"id":1,"name":"Alice","email":"[email protected]","roles":["admin","user"]}
{
"id": 1,
"name": "Alice",
"email": "[email protected]",
"roles": [
"admin",
"user"
]
}
Support captures, API snapshots, and documentation examples format responses.