Guides
Importing Data
Learn how to import data from various sources
5 min readLast updated: Jan 8, 2026
# Importing Data
This guide covers all the ways you can import data into our platform.
CSV Import
- Go to your project
- Click "Import" > "CSV"
- Upload your file
- Map columns to fields
- Click "Import"
Supported Formats
- CSV (comma-separated)
- TSV (tab-separated)
- Excel (.xlsx, .xls)
Database Connection
Connect directly to your existing database:
- Go to Settings > Integrations
- Click "Add Database"
- Enter your connection details
- Select tables to sync
Supported Databases
- PostgreSQL
- MySQL
- MongoDB
- SQLite
API Import
Use our API to import data programmatically:
curl -X POST "https://api.example.com/v1/projects/{id}/import" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{"data": [...]}'
```