GET
/v1/convertJSON to CSV
Convert a JSON array of objects to CSV.
Part of JSON to CSV· Rate limits: 30 req/min
Parameters
jsonquerystringrequiredJSON array of flat objects
X-SEEKER-KeyheaderstringrequiredYour API Seeker key
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| json | query | string | Yes | JSON array of flat objects |
| X-SEEKER-Key | header | string | Yes | Your API Seeker key |
Code examples
cURL
curl -s "https://jsontocsv.apiseeker.com/v1/convert" \
-H "X-SEEKER-Key: YOUR_API_KEY"Response
JSON
{
"success": true,
"data": {
"csv": "name,id\nAda,1\nBob,2",
"rows": 2
},
"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 to CSV
Live testing requires an account. Log in or create an API key to send requests. Docs and snippets stay available without login.
GET
jsontocsv.apiseeker.comhttps://jsontocsv.apiseeker.com/v1/convertStatus: —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://jsontocsv.apiseeker.com/v1/convert" \
-H "X-SEEKER-Key: YOUR_API_KEY"