Documentation
Turn CSV files into REST APIs. Upload a file, get an endpoint, query with GET.
products.csv
namecategorypricestock
Wireless Headphoneselectronics79.99142
USB-C Hubelectronics34.9989
Laptop Standoffice49.00201
+ 844 more rows
GET/v1/apis/products200 OK
{
"data": [{ "name": "Wireless Headphones" β¦ }],
"total": 847,
"page": 1,
"limit": 25
}
How it works
Upload a CSV and check the preview (no account required). When you create the API, youβre guided to sign up if needed, choose a plan, and pay via Stripe. After checkout, the API is live. Manage it in the dashboard: call the endpoint, update an API with a new CSV, or delete it.
- Stable REST endpoint per API
- Filtering, pagination, and sorting via query params
- JSON responses with
dataandmeta - Manage APIs from the dashboard β update with a new CSV or delete
Next steps
New here? Read the intro, then run through the quickstart to create and call your first API.
Tutorials
Hands-on guides for designing datasets, publishing endpoints, and generating working apps with AI coding tools.