# klymax402 CSV to JSON Parser

> klymax402 CSV to JSON Parser is a paid API for AI agents from klymax402.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Parses CSV text content into structured JSON with rows, columns, and metadata

## Facts

- Endpoint: GET https://klymax402.com/api/csv-to-json/api/parse
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/klymax402-csv-to-json-parser-2e3b0df4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JTxmImOIBkpS-izgPUg1i

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability klymax402-csv-to-json-parser-2e3b0df4
```

Example prompt: Can you parse this CSV text into JSON for me? It uses semicolons as delimiters and the first row is headers: 'Name;Age;City\nAlice;30;New York\nBob;25;London'

## When to prefer this

Choose this endpoint when you have raw CSV text content (not a file URL) that needs to be converted to JSON programmatically, especially when the delimiter may vary (comma, semicolon, tab, pipe) or you need automatic delimiter detection. Ideal for lightweight data pipeline steps, ETL preprocessing, or when an agent receives CSV-formatted tool output and needs to work with it as structured JSON.

## Known failure modes

- Malformed or empty CSV string returns empty rows/columns arrays
- Incorrect delimiter specified may produce single-column output with no proper parsing
- CSV with inconsistent column counts per row may yield ragged or misaligned output
- Payment failure (non-402 response) if USDC balance is insufficient
- Very large CSV strings may hit request size limits or timeout

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

Returns a JSON object containing a 'rows' array of parsed data records, a 'columns' array of column names, a 'rowCount' integer, a 'columnCount' integer, the detected or specified 'delimiter' string, and a 'hasHeaders' boolean indicating whether headers were extracted.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "csv": {
   "type": "string",
   "description": "CSV content to parse"
  },
  "delimiter": {
   "type": "string",
   "description": "Delimiter: comma, semicolon, tab, pipe (default: auto-detect)"
  },
  "hasHeaders": {
   "type": "boolean",
   "description": "First row is headers (default: true)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "rows": [],
  "columns": [],
  "rowCount": 1,
  "delimiter": "example",
  "hasHeaders": true,
  "columnCount": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/klymax402-csv-to-json-parser-2e3b0df4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
