Skip to main content

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.

TermMeaning
APIApplication Programming Interface — a way for one program to talk to another over the internet.
EndpointA specific URL on the API that does one thing. GET /v1/datasets is an endpoint.
HTTP methodThe verb of the request: GET reads, POST sends data.
HeaderExtra info attached to a request — like Authorization for your key, or Content-Type for the body’s format.
BodyThe data sent with a request. JSON for this API. Only on POST here.
JSONA text format for structured data. {"key": "value"}.
Bearer tokenA type of API key sent in the Authorization header with the word Bearer in front.
ScopeA permission attached to your key. Without the right scope, you’ll get 403.
Rate limitMaximum requests per minute. Default 60.
PaginationSplitting big results across multiple responses.
CursorAn opaque string the API gives you so you can ask for “the next page.”
FilterA rule that narrows results — e.g. only rows where state = AZ.
OperatorThe verb in a filter — eq, in, between, etc.
SchemaThe shape of a table — column names, types, what filters work on each.
ExportAn async file download. You request it, we build it, you download it.
Signed URLA temporary URL that includes a token proving you’re allowed to access a file. No auth header needed.
Idempotency-KeyA custom header you send so retries don’t create duplicates.
ISO 8601A standard date format like 2026-05-09T12:14:00Z. The Z means UTC.
E.164A standard phone number format like +16025159996.
PIIPersonally Identifiable Information — names, emails, phones, addresses. Treat carefully.
request_idThe opaque identifier we attach to every request and echo in error responses. Include it when contacting support.