Free API30 req/minJSON & Data
CSV to JSON
First row is treated as headers. Returns an array of objects.
By RSM DevOps
Public endpoint
GET
csvtojson.apiseeker.com/v1/convertAuth: X-SEEKER-Key
Endpoint
Pass CSV in the csv query parameter.
Method
GET
Path
/v1/convert
Full URL
https://csvtojson.apiseeker.com/v1/convertAuthentication
Send X-SEEKER-Key on every request. Free tools still require a valid APISeeker key — no auth bypass.
Parameters
csvquerystringrequiredCSV text with header row
Request example
cURL
curl -s "https://csvtojson.apiseeker.com/v1/convert?csv=name%2Cid%0AAda%2C1" \
-H "X-SEEKER-Key: YOUR_API_KEY"Response example
JSON
{
"success": true,
"data": {
"data": [
{
"name": "Ada",
"id": "1"
}
],
"rows": 1
},
"request_id": "req_example"
}Errors & limits
- 400Invalid or missing parameters
- 401Missing or invalid API key
- 429Rate limit exceeded
Rate limit: 30 req/min
Playground
Live playground
CSV to JSON
Sign in to send live requests. Docs and URL preview stay open. Log in
GETRequest URL
https://csvtojson.apiseeker.com/v1/convert?csv=name%2Cid%0AAda%2C1Status: —Latency: —
Response
Response will appear here after you send a request.
