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/products
200 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 data and meta
  • 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.