Orlixio

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.

JSON FormatterJSON ValidatorJSON Diff
Open workflow

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.

JWT DecoderUnix Timestamp ConverterJSON Formatter
Open workflow

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.

JSON FormatterJSON ValidatorJSON to CSV
Open workflow

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.

HTTP Headers ParserHTTP Status Code LookupcURL Formatter
Open workflow

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.

cURL FormatterJSON FormatterHTTP Headers Parser
Open workflow

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.

Slug GeneratorCase ConverterWord Counter
Open workflow

Time and date

Convert timestamps while debugging

Check whether a value is seconds, milliseconds, UTC, local time, or an ISO string before changing code.

Unix Timestamp ConverterISO Date ConverterCron Expression Helper
Open workflow

Validation

Validate an API payload

Start with syntax validation, then check shape, required fields, types, casing, and business rules.

JSON ValidatorJSON FormatterJSON Diff
Open workflow

Tools used across workflows