Getting Started
1. Upload Your Data
Upload CSV, Excel, JSON, Parquet, or text files to the platform.
2. Preview Your Data
See your data structure, column types, and sample records before generating the API.
3. Generate API
Click "Generate API" to create your REST endpoints with filtering, sorting, and pagination.
4. Use Your API
Test your API, view documentation, and download deployment files.
API Features
Endpoints
- GET /data - Retrieve all records
- GET /data/{id} - Get specific record
- POST /data - Create new record
- PUT /data/{id} - Update record
- DELETE /data/{id} - Delete record
Query Parameters
limit
- Number of records (default: 10)offset
- Skip records (default: 0)sort_by
- Sort columnsort_order
- asc/desc- Column filters - filter by any column value
Code Examples
JavaScript
Python
cURL
File Format Support
CSV Files
Comma-separated values with headers
Excel Files
.xlsx and .xls spreadsheets
JSON Files
Array of objects format
Parquet Files
Columnar storage format
Text Files
Plain text with delimiters