Utilido blog
A JSON debug checklist after API or config changes
Steps to validate payloads locally before they reach staging or production systems.
By Benchehida Abdelatif · Published April 22, 2026 · Updated May 24, 2026 · 6 min read
Broken JSON usually fails late: in a deploy hook, a mobile client, or a spreadsheet import. A short local checklist catches syntax and shape issues while the response is still on your clipboard.
Checklist
- Paste into the JSON formatter and fix the reported line first.
- Confirm arrays vs single objects match the consumer.
- Search for trailing commas and smart quotes from editors.
- Compare minified wire size vs indented diff size in git.
Pairs with CSV tools
When the API accepts tables, export a five-row sample to CSV and back to JSON to see if headers shifted. Large files should be split before the tab slows down.

