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.
Workflow A — “Show me a dashboard of leads by state”
Get the schema once
Cache GET /v1/datasets/leads/schema on your end. You’ll need it
to build dropdowns.
Pull stats
GET /v1/datasets/leads/stats?group_by=state,tier — gives you
counts by state and tier in one cheap call.
Render the dashboard
Loop through groups, draw a chart. Refresh the call every
minute (response is cached anyway).
Workflow B — “Find homeowners aged 30-55 in TX, AZ, NV — first 500 results”
Call /search with limit=500
POST /v1/datasets/leads/search
{
"filters": {
"state": { "in": ["TX","AZ","NV"] },
"age": { "between": [30, 55] },
"homeowner": { "eq": "Y" },
"dnc": { "eq": "N" }
},
"limit": 500
}
Use the rows
The response’s rows array has up to 500 lead objects.
total_estimate tells you how many more match.
Workflow C — “Export every California lead to CSV”
Kick off the export
POST /v1/exports
{
"table": "leads",
"select": ["*"],
"filters": { "state": { "eq": "CA" } },
"format": "csv",
"compression": "gzip"
}
Save the returned export_id.Poll until ready
Every 5 seconds: GET /v1/exports/{id}. Stop when
status = completed.
Download
Curl the download_url and decompress. Done.