JSON Formatter
Paste raw JSON, validate it instantly, and get clean pretty-printed output ready for APIs, config files, or docs.
Input sample
{"site":"SLOXLYDEV","stack":["PHP","HTML","CSS"]}
Output sample
{
"site": "SLOXLYDEV",
"stack": [
"PHP",
"HTML",
"CSS"
]
}
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.
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.