DELXCOMMERCE Live contract

Web and API intelligence · utility

Delx Csv To Json

CSV to JSON conversion API for agents: convert a bounded CSV payload into JSON rows for $0.01 USDC for downstream agents, prompts, and ETL—no account or file storage product. Call when you need this bounded result without an API key or subscription. Returns machine-readable JSON via x402 on Base or Solana. Limitation: results cover only the supplied input or one bounded public endpoint at request time; callers must verify before acting.

x402utilitycsvjsoncsv-to-jsoncsv-to-json-apidata-conversion

One-command purchase

Run it from an agent.

No account or API key. AgentCash reads the 402 challenge, pays no more than the declared cap, retries the request and returns the result.

npx agentcash@latest fetch https://api.delx.ai/api/v1/x402/csv-to-json -m POST -H 'x-delx-source: product-page' --max-amount 0.01 -b '{"csv_text":"name,score\nana,7\nbob,9\n"}'
InputPOST /api/v1/x402/csv-to-json
{
  "csv_text": "name,score\nana,7\nbob,9\n"
}
Delivered resultapplication/json
{
  "tool_name": "util_csv_to_json",
  "result": {
    "columns": [
      "name",
      "score"
    ],
    "row_count": 2,
    "rows": [
      {
        "name": "ana",
        "score": "7"
      },
      {
        "name": "bob",
        "score": "9"
      }
    ]
  }
}

Machine-readable evidence

Inspect before paying.