The main read endpoint. Returns actual row data, paginated, with filters applied.
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.
| Field | Type | Description |
|---|---|---|
select (optional) | array of strings | Which columns to return. Omit for all columns your key can see. |
filters (optional) | object | Filter rules per column. Format: { "column": { "operator": value } }. AND across columns. |
sort (optional) | array of objects | [{ "column": "...", "direction": "asc" or "desc" }]. Default: lead_time desc. |
limit (optional) | integer | Rows per page. Default 100. Max 1000. |
cursor (optional) | string | From the previous response’s next_cursor. Omit on the first call. |
| Field | What it is |
|---|---|
rows | An array of objects. Each object is one row from the table with the columns you asked for in select. |
returned | How many rows are in this response. Equals rows.length. |
next_cursor | An opaque string. Pass this as cursor in your next call to get the next page. null means you’ve hit the end. |
total_estimate | Approximate total matching rows across all pages — handy for progress bars. |
/schema to see which operators each
column supports.