POST
data
csv_to_json
1 creditParse CSV text to a JSON array of objects
Endpoint
POST /api/v1/tools/data/csv_to_json
Body Parameters
text
string
required
header
boolean
optional
default: true
delimiter
string
optional
default: ","
skip_empty_rows
boolean
optional
default: true
Example
input
Request
{
"text": "name,age\nAlice,30\nBob,25"
}
output
Response
{
"result": [
{
"age": "30",
"name": "Alice"
},
{
"age": "25",
"name": "Bob"
}
]
}
Response Format
HTTP/1.1 200 OK
SUCCESS
{
"success": true,
"data": {
"result": [
{
"age": "30",
"name": "Alice"
},
{
"age": "25",
"name": "Bob"
}
]
},
"meta": {
"tool": "csv_to_json",
"credits_consumed": 1
}
}
HTTP/1.1 422 Unprocessable Entity
ERROR
{
"success": false,
"data": null,
"error": {
"code": "validation_error",
"message": "The given data was invalid."
}
}
Sign in to try this tool directly from the docs.
Code Examples
Request Example
lightbulb
Developer Tip
Credits are deducted before execution. If the upstream tool fails, credits are automatically refunded to your account.