Formatting

JSON Formatter

Paste raw JSON, validate it instantly, and get clean pretty-printed output ready for APIs, config files, or docs.

TRENDING POST /json/format Open API docs
Example

Input sample

{"site":"SLOXLYDEV","stack":["PHP","HTML","CSS"]}
Example

Output sample

{
    "site": "SLOXLYDEV",
    "stack": [
        "PHP",
        "HTML",
        "CSS"
    ]
}
API usage

Integration notes

Send a JSON body with an input field to the API endpoint. The response returns a formatted string inside the data.output field.

FAQ

Common questions

Does the formatter store my payload?
No. Tool submissions are processed in-memory and never written to persistent storage.
Can I call the formatter from scripts?
Yes. Use the public POST endpoint on api.sloxlydev.in with an input field in JSON or form data.