Skip to main content
POST
Count the rows a filter selects

Authorizations

X-API-Key
string
header
required

Path Parameters

table_id
string<uuid>
required

Body

application/json

Request body for the row count.

The predicate half of the rows query and nothing else: no cursor, no projection, no sort. Counting is order-independent by definition, and a caller that sends a sort is asking for something this cannot mean.

row_status
enum<string> | null

Restrict to rows whose cells are errored or fully_computed.

Available options:
errored,
fully_computed
where
TableRowsWhereSchema · object | null

The predicate tree rows must satisfy. Omit to count the whole table.

Response

Successful Response

How many rows a predicate selects.

count
integer
required

Rows matching the predicate. Exact, not an estimate.