CSV Processor API
The CSV Processor API provides comprehensive CSV processing capabilities. Parse, validate, transform, and convert CSV data with support for SQL queries, pivot tables, and merging multiple datasets. ## Core Features - **Parse/Format**: CSV to JSON, XML, HTML, SQL - **Reverse Conversion**: JSON array to CSV - **Auto-detect**: Delimiter detection (comma, semicolon, tab, pipe) - **SQL Queries**: Run…
CSV Processor API endpoints
| Method | Endpoint | Description |
|---|---|---|
| General | ||
| GET |
healthCheck /health |
Returns API health status and timestamp |
| GET |
getApiInfo / |
Returns API information and available endpoints |
| CSV Processing | ||
| POST |
csvToJson /api/csv/to-json |
Converts CSV string to JSON array format |
| POST |
parseCsv /api/csv/parse |
Parses CSV string and returns structured JSON data with metadata |
| POST |
csvToSql /api/csv/to-sql |
Converts CSV data to SQL INSERT statements |
| POST |
queryCsv /api/csv/query |
Execute SQL-like queries (SELECT, WHERE, ORDER BY, LIMIT) on CSV data |
| POST |
csvToHtml /api/csv/to-html |
Converts CSV data to HTML table format |
| POST |
csvToXml /api/csv/to-xml |
Converts CSV data to XML format with proper escaping |
| POST |
mergeCsv /api/csv/merge |
Merge multiple CSV datasets with join operations |
| POST |
jsonToCsv /api/csv/from-json |
Converts a JSON array of objects to CSV format |
| CSV Analysis | ||
| POST |
transformCsv /api/csv/transform |
Apply transformations like rename, filter, sort to CSV data |
| POST |
filterCsv /api/csv/filter |
Filter CSV rows based on conditions with various operators |
| POST |
pivotCsv /api/csv/pivot |
Create a pivot table from CSV data with configurable aggregation |
| POST |
aggregateCsv /api/csv/aggregate |
Group and aggregate CSV data with operations like sum, avg, count, min, max |
| POST |
detectCsvStructure /api/csv/detect |
Automatically detect the delimiter and structure of CSV data |
| POST |
validateCsv /api/csv/validate |
Validates CSV structure and checks for inconsistencies |
| POST |
advancedValidateCsv /api/csv/validate/advanced |
Perform advanced validation including data type checks, duplicate detection, and configurable rules |
CSV Processor API pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | — |
|
| PRO Recommended | $9 / month | 500 / minute |
|
| ULTRA | $29 / month | 2000 / minute |
|
| MEGA | $99 / month | 5000 / minute |
|