GET
/v1/minifyJSON Minifier
Minify JSON payloads to a compact string.
Part of JSON Minifier· Rate limits: 60 req/min
Parameters
jsonquerystringrequiredJSON document as a string
X-SEEKER-KeyheaderstringrequiredYour API Seeker key
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| json | query | string | Yes | JSON document as a string |
| X-SEEKER-Key | header | string | Yes | Your API Seeker key |
Code examples
cURL
curl -s "https://jsonminify.apiseeker.com/v1/minify" \
-H "X-SEEKER-Key: YOUR_API_KEY"Response
JSON
{
"success": true,
"data": {
"minified": "{\"a\":1,\"b\":[2,3]}",
"bytesIn": 18,
"bytesOut": 13
},
"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
JSON Minifier
Live testing requires an account. Log in or create an API key to send requests. Docs and snippets stay available without login.
GET
jsonminify.apiseeker.comhttps://jsonminify.apiseeker.com/v1/minifyStatus: —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://jsonminify.apiseeker.com/v1/minify" \
-H "X-SEEKER-Key: YOUR_API_KEY"