Skip to main content
GET
/
branches
/
{id}
/
tables
/
{tableName}
Get table data
curl --request GET \
  --url https://api.specular.dev/branches/{id}/tables/{tableName} \
  --header 'Authorization: Bearer <token>'
{
  "rows": [
    {}
  ],
  "totalCount": 123,
  "limit": 123,
  "offset": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication with API key (format: Bearer sk_xxx)

Path Parameters

id
string
required

Branch ID

tableName
string
required

Table name

Query Parameters

limit
number

Number of rows to return (default: 50, max: 1000)

Required range: 1 <= x <= 1000
offset
number

Number of rows to skip (default: 0)

Required range: x >= 0

Response

Table data

Table data

rows
object[]
totalCount
number
limit
number
offset
number