Skip to content
APISeeker
Free API30 req/minJSON & Data

CSV to JSON

First row is treated as headers. Returns an array of objects.

By RSM DevOps

Public endpoint

GETcsvtojson.apiseeker.com
/v1/convert

Auth: X-SEEKER-Key

Endpoint

Pass CSV in the csv query parameter.

Method

GET

Path

/v1/convert

Full URL

https://csvtojson.apiseeker.com/v1/convert

Authentication

Send X-SEEKER-Key on every request. Free tools still require a valid APISeeker key — no auth bypass.

Parameters

  • csvquerystringrequired

    CSV 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

Login required

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%2C1
Log in to test endpoint
Status: Latency:

Response

Response will appear here after you send a request.

Related tools

FAQ