Generate a CSV or JSONL file of any size. Returns an export_id you poll until it’s ready.
Documentation Index
Fetch the complete documentation index at: https://docs.trydatadriver.com/llms.txt
Use this file to discover all available pages before exploring further.
/search — say,
50,000+ rows. Instead of looping for hours, you ask us to build a
file in the background, then download it from a signed URL.
| Header | Required? | Description |
|---|---|---|
Authorization | yes | Bearer token. |
Content-Type | yes | application/json |
Idempotency-Key | recommended | Any string you choose. Sending the same key within 24h returns the same export_id instead of creating a duplicate. |
| Field | Type | Description |
|---|---|---|
table (required) | string | Which table to export from. |
select (optional) | array | Columns. Use ["*"] for all. |
filters (optional) | object | Same shape as /search filters. |
format (optional) | string | csv (default) or jsonl. |
compression (optional) | string | gzip (default) or none. |
202 Accepted means “working on it.” Poll
GET /v1/exports/{id} until status becomes
completed.Idempotency-Key and it matches a recent export, the
response will include "idempotent_replay": true and the same
export_id as before — no new export was created.