# SixPath CSV Parse

> SixPath CSV Parse is a paid API for AI agents from sixpath.vercel.app, paid per call via x402, $0.146663/call, status unknown (last checked 2026-09-14).

Parses CSV text into structured rows, headers, and row count with configurable delimiter support

## Facts

- Endpoint: POST https://sixpath.vercel.app/api/csv-parse
- Price: $0.146663/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sixpath-csv-parse-ab50fbc0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dClaLFtd6qG6OwgEOShVs

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 sixpath-csv-parse-ab50fbc0 -d '<json body>'
```

Example prompt: Parse this CSV text for me — it uses semicolons as the delimiter: 'name;age;city\nAlice;30;NYC\nBob;25;LA' — and give me back the headers and all rows as structured data.

## When to prefer this

Use this endpoint when you have raw CSV text (not a file URL) that needs to be parsed into structured rows and headers programmatically, especially when the delimiter may be non-standard (e.g., semicolons or tabs). Best suited for lightweight, on-demand CSV parsing without requiring a full data pipeline.

## Known failure modes

- Malformed or empty CSV text may return an error or empty rows array
- Wrong delimiter specified causes misaligned column parsing
- Very large CSV payloads may time out or be rejected
- Missing 'csv' field in request body causes validation error
- Non-string input for csv field returns error

## How this service works

All-in-one API hub: Social Media, Jobs, Finance, Crypto, and Tools. Pay-per-call with x402 protocol on Base chain.

## Output

Returns an object with 'headers' (array of column name strings), 'rows' (array of parsed row objects or arrays), and 'count' (integer number of data rows parsed from the CSV input).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "csv": {
   "type": "string",
   "description": "CSV text to parse"
  },
  "delimiter": {
   "type": "string",
   "description": "Column delimiter"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "rows": {
   "type": "array"
  },
  "count": {
   "type": "integer"
  },
  "headers": {
   "type": "array",
   "items": {
    "type": "string"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sixpath-csv-parse-ab50fbc0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sixpath.vercel.app](https://www.zero.xyz/host/sixpath.vercel.app/llms.txt)
