Structured Sheets
List tables in structured sheet
List all tables extracted from the structured sheet. Only available when conversion status is 'completed'.
get/v1/structured-sheets/{structured_sheet_id}/tables
Path parameters
structured_sheet_idstring required
The unique identifier of the structured sheet conversion.
Example:ss_01kfxgjd94fn9stqm42nejb627
The unique identifier of the structured sheet conversion.
Query parameters
limitinteger
Maximum number of tables to return per page.
Example:20
Maximum number of tables to return per page.
afterstring nullable
Unique identifier for a table.
Example:tbl_01kfxgjd94fn9stqm45rqr2pnz
A cursor for pagination. Use the last_id from a previous response to fetch the next page of results.
Response
Successful Response
Example response
{
"data": [
{
"created_at": "2026-01-15T10:35:00Z",
"id": "tbl_01kfxgjd94fn9stqm45rqr2pnz",
"name": "staffing__head_count",
"object": "table",
"sheet_name": "Staffing",
"structured_sheet_id": "ss_01kfxgjd94fn9stqm42nejb627",
"type": "relational"
},
{
"created_at": "2026-01-15T10:35:00Z",
"id": "tbl_02abc2def3ghjkmnpqrs4uvwxz",
"name": "staffing__head_count__aggregations",
"object": "table",
"sheet_name": "Staffing",
"structured_sheet_id": "ss_01kfxgjd94fn9stqm42nejb627",
"type": "aggregation"
}
],
"first_id": "tbl_01kfxgjd94fn9stqm45rqr2pnz",
"has_more": false,
"last_id": "tbl_02abc2def3ghjkmnpqrs4uvwxz",
"object": "list"
}