About this endpoint
What it does
Converts a CSV file accessible at a public URL into a JSON array. The endpoint fetches the CSV from the provided URL and returns the parsed rows as an array of JSON objects.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| url | String | Yes | Publicly accessible URL pointing to a CSV file. Must be a valid URI. The endpoint validates that the response Content-Type is text/csv or text/plain; charset=UTF-8, or that the Content-Disposition header references a .csv file. |
Response
Returns a JSON array of objects, where each array item is an object parsed from the CSV rows. The output schema allows additional properties on each object.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| array item | Object | Yes | One parsed CSV row as a JSON object. Additional properties are allowed. |