Skip to content

Get table statistics for a dataset

GET
/datasets/{datasetId}/table-stats

Returns row counts for all tables in the dataset

datasetId
required

Unique identifier for the dataset to retrieve

string

Unique identifier for the dataset to retrieve

Table statistics retrieved successfully

object
datasetId
required

ID of the dataset

string
tables
required

Statistics for each table in the dataset

Array<object>
object
tableId
required

Unique identifier for the table

string
tableName
required

Human-readable name of the table

string
rowCount
required

Number of rows in the table

number
totalRows
required

Sum of row counts across all tables

number
tableCount
required

Number of tables in the dataset

number

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