JSON tools
Read it, shrink it, prove it, convert it
JSON is what almost every API answers in, so a great deal of debugging starts by making a single unbroken line of it readable. This family covers the whole round trip: expand and explore a payload, strip it back down, prove it is valid, and turn it into a spreadsheet or into typed code.
All five run on one parser that carries numbers through as raw text, so a 64-bit snowflake ID or a 19-digit order total comes out byte-identical instead of quietly rounded by JavaScript floats. The same engine repairs broken payloads and itemises what it changed, reports gzip size from the browser compression API rather than an estimate, and scans in-tab for tokens and personal data before you paste a snippet into a ticket.
- Reading a minified response you just copied out of the network panel
- Finding the exact line and column a parser is choking on
- Turning a sample payload into typed models without hand-writing them