API Runner
csv-to-json Endpoints
All endpoints for the csv-to-json API group. Great for feeding into an LLM context.
POST
/v1/csv-to-json
Csv To Json
Convert uploaded CSV file to JSON format.
Request Body
{
"content": {
"multipart/form-data": {
"schema": {
"$ref": "#/components/schemas/Body_csv_to_json_v1_csv_to_json_post"
}
}
},
"required": true
}Responses
200Successful Response
application/json
{}404Not found
422Validation Error
application/json
{
"$ref": "#/components/schemas/HTTPValidationError"
}