Beautify a minified API response
The usual case: a single-line response body copied out of a network panel or a log.
{"id":42,"name":"Ada Lovelace","active":true,"roles":["admin","editor"],"meta":{"created":"2024-01-15T09:30:00Z","score":98.5}}{
"id": 42,
"name": "Ada Lovelace",
"active": true,
"roles": [
"admin",
"editor"
],
"meta": {
"created": "2024-01-15T09:30:00Z",
"score": 98.5
}
}The data is untouched — only whitespace changed. Nested objects and arrays each gain a level of indentation, which is what makes the structure scannable. Formatting is purely presentational, so you can safely paste the result back into the system it came from.