Debug a failing API
DeveloperReproduce the request, format the JSON response, inspect JWTs, and compare payloads.
5 steps
- Send the request
- Format the response
- Inspect auth tokens
- Diff against expected
- Export as cURL
Developer workflow
Broken JSON in configs, feature flags, or CMS exports can take down a release. This workflow catches syntax errors first, formats the document for review, drafts a schema when you need structure guarantees, then diffs against yesterday’s version.
Validate syntax, pretty-print, generate a schema draft, and diff against the previous payload.
Workflow
Work through each step in order. Progress is saved in this browser. Utilnivo does not save uploaded files permanently between tools.
Progress: 0 of 4 steps complete (0%)
Confirm the document parses and review line-oriented diagnostics.
Pretty-print or minify so humans and diffs stay readable.
Generate a JSON Schema skeleton from a representative sample.
Compare the new payload with the previous environment or release.
Track progress
0 of 4 complete (0%). Your progress is saved in this browser.
Printable step list with checkboxes—generated on your device.
Results
What you entered and what each step produced appear here. Values used in the next step are passed when supported. Data stays in this browser only.
Run each step and submit the calculator form. Key results will appear here as a connected summary.
Progress: 0 of 4 steps marked complete (0%).
Tips
FAQ
No. JSON validation and formatting run in your browser on the text you paste.
Use JSON Validator for syntax first, then refine schemas with JSON Schema Generator as a draft—full schema enforcement may still live in your CI.
Strict JSON rejects trailing commas. The validator surfaces those errors before you deploy.
Keep going
Reproduce the request, format the JSON response, inspect JWTs, and compare payloads.
5 steps
Preview CSV, convert to JSON, format, and validate before posting to an API.
4 steps
Decode a bearer token, pretty-print JSON claims, and inspect Base64 segments.
3 steps