# BountySignal CSV to JSON Converter

> BountySignal CSV to JSON Converter is a paid API for AI agents from bountysignal-radar-v2.minhtuan36zzz97948.chatgpt.site, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Converts a CSV string into structured JSON rows, with optional delimiter and header configuration

## Facts

- Endpoint: POST https://bountysignal-radar-v2.minhtuan36zzz97948.chatgpt.site/api/x402/csv-to-json
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bountysignal-csv-to-json-converter-7aa1d90a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U3TDBGLwVm09lFMooQmv0

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 bountysignal-csv-to-json-converter-7aa1d90a -d '<json body>'
```

Example prompt: Can you convert this CSV data into JSON for me? The content is 'name,score\nAda,10\nBob,20', it has a header row, and the delimiter is a comma.

## When to prefer this

Choose this endpoint when you have raw CSV text (from a file export, clipboard, or string variable) that needs to be converted to JSON for downstream processing in an agent pipeline or API call. It is especially useful when you need to control the delimiter and header detection rather than using a local parsing library. Prefer it when operating in an environment without native CSV tooling or when you need a paid, stateless, on-demand conversion over a self-hosted solution.

## Known failure modes

- Malformed CSV with mismatched quotes or escaped characters may cause parsing errors
- Specifying an incorrect delimiter results in a single-column output or unparseable rows
- Very large CSV inputs may be truncated (truncated: true in response)
- Missing required 'csv' field returns a validation error
- Ambiguous or multi-character delimiters may not be supported

## How this service works

A $5 evidence-first check that tells developers and AI agents whether a bounty can actually pay before they build.

## Output

Returns a JSON object containing an array of parsed rows (each row as a key-value object if headers are present, or an array of values if not), the total row count, the output format label, and a truncated flag indicating whether the input was cut off due to size limits.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "csv": {
   "type": "string"
  },
  "delimiter": {
   "type": "string"
  },
  "hasHeader": {
   "type": "boolean"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "rows": [
   {
    "name": "Ada",
    "score": "10"
   }
  ],
  "format": "json",
  "rowCount": 1,
  "truncated": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bountysignal-csv-to-json-converter-7aa1d90a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bountysignal-radar-v2.minhtuan36zzz97948.chatgpt.site](https://www.zero.xyz/host/bountysignal-radar-v2.minhtuan36zzz97948.chatgpt.site/llms.txt)
