# minia2a CSV to JSON Converter

> minia2a CSV to JSON Converter is a paid API for AI agents from minia2a.uk, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-16).

Converts CSV-formatted data into JSON format

## Facts

- Endpoint: GET https://minia2a.uk/x402/csv-json
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-csv-to-json-converter-1c6ffa29
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_K-s2c73BeAy8VBMsnXo9q

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 minia2a-csv-to-json-converter-1c6ffa29
```

Example prompt: Can you convert this CSV data into JSON for me? I'll send it as a query parameter and want the output as a JSON object.

## When to prefer this

Use this endpoint when you need a quick, pay-per-call CSV-to-JSON conversion without setting up your own parser, especially in agentic workflows where data format transformation is a one-off step and you want to avoid adding a library dependency.

## Known failure modes

- Missing or malformed input CSV returns an error
- Improperly formatted CSV (e.g. inconsistent column counts) may produce unexpected JSON
- Payment failure (402) if USDC funds are insufficient
- Invalid query parameter structure returns a validation error

## How this service works

minia2a service: x402-csv-json

## Output

A JSON representation of the input CSV data, with CSV rows mapped to JSON objects or arrays depending on the data structure.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "method": {
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minia2a-csv-to-json-converter-1c6ffa29/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from minia2a.uk](https://www.zero.xyz/host/minia2a.uk/llms.txt)
