DELXCOMMERCE Live contract

Web and API intelligence · utility

Delx Csv To Json

Convert raw CSV into JSON rows for agents, prompts, and ETL workflows (x402)

x402utilitycsvjsondata-cleaning

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.