Practical workflows
Step-by-step developer workflows
Use workflows when you know the problem but not the exact tool. Each workflow connects a real debugging or preparation task with the right Orlixio tools, related guides, examples, and common mistakes.
JSON and API debugging
Debug a JSON API response
Start with syntax, then inspect structure, status codes, headers, and changed fields before changing application code.
API and auth debugging
Inspect a JWT token safely
Decode header and payload, inspect claims, convert exp/iat/nbf timestamps, and keep signature verification separate.
Data conversion
Convert JSON data to a spreadsheet
Validate the JSON, confirm it is an array of objects, flatten only what you understand, then copy CSV output.
Web and HTTP
Debug HTTP headers
Headers often explain API failures faster than the body: content type, cache state, auth challenges, CORS, and cookies all live there.
API documentation
Prepare a clean API example
Format the cURL command, redact secrets, validate JSON bodies, and keep only the headers required to reproduce the behavior.
Text utilities
Create a clean URL slug
Start from the title, normalize text, remove noise, keep important words, and avoid changing the slug after publishing.
Time and date
Convert timestamps while debugging
Check whether a value is seconds, milliseconds, UTC, local time, or an ISO string before changing code.
Validation
Validate an API payload
Start with syntax validation, then check shape, required fields, types, casing, and business rules.