GET
/v1/formatJavaScript Formatter
Best-effort pretty-print for JavaScript source.
Part of JavaScript Formatter· Rate limits: 30 req/min
Parameters
codequerystringrequiredJavaScript source
X-SEEKER-KeyheaderstringrequiredYour API Seeker key
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| code | query | string | Yes | JavaScript source |
| X-SEEKER-Key | header | string | Yes | Your API Seeker key |
Code examples
cURL
curl -s "https://jsfmt.apiseeker.com/v1/format" \
-H "X-SEEKER-Key: YOUR_API_KEY"Response
JSON
{
"success": true,
"data": {
"formatted": "function x() {\n return 1\n}"
},
"request_id": "req_example"
}Errors
- 400 — Invalid or missing parameters
- 401 — Missing or invalid API key
- 429 — Rate limit exceeded
Try this endpoint
API Playground
JavaScript Formatter
Live testing requires an account. Log in or create an API key to send requests. Docs and snippets stay available without login.
GET
jsfmt.apiseeker.comhttps://jsfmt.apiseeker.com/v1/formatStatus: —Latency: —
Response headers
Log in to run a test and see headers.
Response body
Log in required for live testing.
Generated snippets
cURL
curl -s "https://jsfmt.apiseeker.com/v1/format" \
-H "X-SEEKER-Key: YOUR_API_KEY"