Skip to main content
open-toolsopen-tools

JSON Formatter

Format and beautify JSON with proper indentation

Use via API

API · SAME JOB, YOUR MACHINE

# Upload JSON file and create job
curl -X POST https://api.open-tools.app/api/upload \
  -F "file=@input.json" \
  -F "job_type=json-formatter"

# Response: {"job_id": "abc-123", "status": "queued"}

# Connect to WebSocket for status updates
# wss://ws.open-tools.app/ws/{job_id}

# Download result when completed
curl -X GET https://api.open-tools.app/api/download/{file_id}