Skip to main content
GET
List table assets

Authorizations

Authorization
string
header
required

Personal or account token.

Path Parameters

env_id
string
required

Environment identifier that scopes the request.

Query Parameters

ids
string[] | null

Return only table assets with these ids.

Maximum array length: 1000
source_types
string[] | null

Return only table assets from these source types (e.g. dbt, fivetran).

Maximum array length: 1000
tags
string[] | null

Return only table assets tagged with any of these tags.

Maximum array length: 1000
db_names
string[] | null

Return only table assets in these databases.

Maximum array length: 1000
schema_names
string[] | null

Return only table assets in these schemas.

Maximum array length: 1000
materializations
string[] | null

Return only table assets with these materializations (e.g. table, view, incremental).

Maximum array length: 1000
synced_since
string<date-time> | null

Upserts feed: assets whose synced_at >= this time (inclusive). Orders by synced_at.

deleted_since
string<date-time> | null

Tombstones feed: assets whose deleted_at >= this time (inclusive). Orders by deleted_at.

cursor
string | null

Opaque cursor from a previous response's next_cursor. Reuse it only with the identical query parameters that produced it.

limit
integer
default:500

Maximum items to return per page (1-2000).

Required range: 1 <= x <= 2000
order_by
enum<string>
default:id

Sort field for a full scan. Ignored when synced_since/deleted_since is set (those feeds always order by their own cursor).

Available options:
id,
synced_at
direction
enum<string>
default:asc

Sort direction for order_by.

Available options:
asc,
desc

Response

Successful Response

items
TableAsset · object[]
required

Objects returned in the current page.

has_more
boolean
default:false

The only signal to continue pagination; a short page may still have more items because permission filtering can trim rows.

next_cursor
string | null

Opaque cursor for the next page, valid only with identical query parameters.