Skip to content

Get table statistics

GET
/dataset-tables/{tableId}/stats

Get statistics for a dataset table including row count and usage metrics (query/ingest counts).

tableId
required

Unique identifier of the table to retrieve

string

Unique identifier of the table to retrieve

Table statistics retrieved successfully

object
tableId
required

ID of the table

string
rowCount
required

Total number of rows in the table

number
totalQueries
required

Total number of queries executed against this table

number
totalIngests
required

Total number of write operations performed

number
lastQueryAt
required

When the last query was executed

string format: date-time
nullable
lastIngestAt
required

When the last write operation occurred

string format: date-time
nullable

Bad Request - Validation error or invalid input

object
error
required
string
code
string
details
nullable
retryable
boolean

Unauthorized - Authentication required or invalid token

object
error
required
string
code
string
details
nullable
retryable
boolean

Forbidden - Insufficient permissions

object
error
required
string
code
string
details
nullable
retryable
boolean

Not Found - Resource does not exist

object
error
required
string
code
string
details
nullable
retryable
boolean