CSV Data Cleaning & Normalization API
The CSV Data Cleaning & Normalization API provides a fast, deterministic way to sanitize messy CSV files before analysis, ingestion, or storage. This API focuses on SAFE data normalization — not guessing, not machine learning, and not silent type coercion. Every transformation is rule-based, explainable, and reported transparently. Key principles: • Deterministic behavior (same input → same…
CSV Data Cleaning & Normalization API endpoints
| Method | Endpoint | Description |
|---|---|---|
| cleaning | ||
| POST |
clean_csv_api_v1_clean_post /api/v1/clean |
Clean and normalize a CSV file. **Request:** - `file`: CSV file to clean **Response:** - Content: Cleaned CSV file (text/csv) - Header `X-Cleaning-Report`: Base64-encoded JSON… |
| POST |
clean_csv_with_report_api_v1_clean_with_report_post /api/v1/clean/with-report |
Clean CSV file and return both data and report in JSON response. **Response format:** ```json { "cleaned_csv": "", "report": { "columns_renamed": 5, "nulls_standardized": 42, ...… |
| Other endpoints | ||
| GET |
root__get / |
Health check endpoint. |
CSV Data Cleaning & Normalization API pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | — |
|
| PRO Recommended | $2 / month | — |
|
| ULTRA | $5 / month | — |
|
| MEGA | $10 / month | — |
|