Tables are available on Enterprise plans.
/tables/, for example https://app.clay.com/workspaces/{workspaceId}/tables/t_0te9i4tZEHwc9hihBXu.
Common uses
- Pull records into a dashboard or internal tool.
- Power interactive apps that search, filter, and inspect Clay table data.
- Run QA checks against known Clay tables.
- Sync selected table fields into another system.
- Power alerts, scoring models, and warehouse jobs.
Query shape
Table queries are structured. You select fields, apply filters, and page through results with a cursor.query is required and holds the fields, filters, ordering, and joins. limit and cursor are top-level siblings of query: limit (max 100) caps the page size, and cursor pages through results.
The response includes a data array and an optional cursor for pagination. When a cursor is returned, pass it back as the top-level cursor in your next request to fetch the following page. Cell values are returned with a status so your integration can distinguish successful, empty, pending, and errored cells.
Generated API reference
See the table-query schema and try-it UI.

