Skip to main content
GET
/
v1
/
datasets
List datasets
curl --request GET \
  --url https://api.trydatadriver.com/v1/datasets

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.

When you’d use this

This is usually the first call you make. It tells you what’s available — for example, “leads” — and how many rows are in each table. Think of it like opening a library catalog.

Request

curl https://api.trydatadriver.com/v1/datasets \
  -H "Authorization: Bearer dd_a3f9b2c1d4e5f6g7h8i9j0"

Response

{
  "datasets": [
    {
      "table": "leads",
      "name": "Leads",
      "description": "Enriched contacts",
      "row_count": 102345,
      "last_updated_at": "2026-05-09T11:48:41Z",
      "vertical": "home_services_moving"
    }
  ]
}

Field reference

FieldTypeWhat it means
datasetsarrayThe list of tables you can read. Empty array = your key has no permissions yet.
tablestringThe internal table name. Use this in /datasets/{table}/... URLs.
namestringA friendlier name you can display in your UI.
descriptionstringA sentence about what the data is.
row_countintegerApproximate total rows. Updated periodically.
last_updated_atstring (ISO 8601)Timestamp of the most recent ingest. Useful for cache-busting.
verticalstringThe data category (e.g. moving, solar, insurance).
If you want to know what columns exist in a table, that’s the next endpoint — Get schema.