InputPOST /api/v1/x402/csv-to-json
{
"csv_text": "name,score\\nana,7\\nbob,9\\n"
}
Web and API intelligence · utility
Convert raw CSV into JSON rows for agents, prompts, and ETL workflows (x402)
One-command purchase
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"}'
{
"csv_text": "name,score\\nana,7\\nbob,9\\n"
}
{
"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