Get schema
Endpoints
Get schema
Discover the columns of a table and which filter operators each column supports.
GET
Get schema
When you’d use this
Before searching or exporting. The schema tells you what fields exist (e.g.first_name, state, age) and how you can filter
each one. This is also how you build dynamic filter UIs.
Path parameters
| Name | Type | Description |
|---|---|---|
table | string (required) | The table name from GET /v1/datasets — usually leads. |
Request
Response
Field reference
| Field | Meaning |
|---|---|
name | The column name. Use this in your filter object as the key. |
type | Data type: text, int, timestamptz, uuid, bool, enum_text. |
nullable | true = the column can be empty for some rows. |
operators | Which filter operators work on this column. See Filter operators. |
enum | Optional. For columns with a fixed set of valid values. |
ordered_values | Optional. For columns where order matters but values are text. |
Pro move. Cache the schema response by
version. When the
version changes, refresh — it means we added or modified columns.