List tables in structured sheet
client.StructuredSheets.Tables.List(ctx, structuredSheetID, query) (*CursorIDPage[TableResponse], error)
GET/v1/structured-sheets/{structured_sheet_id}/tables
List all tables extracted from the structured sheet. Only available when conversion status is 'completed'.
List tables in structured sheet
package main
import (
"context"
"fmt"
"github.com/deeptable-com/deeptable-go"
"github.com/deeptable-com/deeptable-go/option"
)
func main() {
client := deeptable.NewClient(
option.WithAPIKey("My API Key"),
)
page, err := client.StructuredSheets.Tables.List(
context.TODO(),
"ss_01kfxgjd94fn9stqm42nejb627",
deeptable.StructuredSheetTableListParams{
},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", page)
}
{
"data": [
{
"id": "tbl_01kfxgjd94fn9stqm45rqr2pnz",
"created_at": "2026-01-15T10:35:00Z",
"name": "staffing__head_count",
"object": "table",
"sheet_name": "Staffing",
"structured_sheet_id": "ss_01kfxgjd94fn9stqm42nejb627",
"type": "relational"
},
{
"id": "tbl_02abc2def3ghjkmnpqrs4uvwxz",
"created_at": "2026-01-15T10:35:00Z",
"name": "staffing__head_count__aggregations",
"object": "table",
"sheet_name": "Staffing",
"structured_sheet_id": "ss_01kfxgjd94fn9stqm42nejb627",
"type": "aggregation"
}
],
"has_more": false,
"object": "list",
"first_id": "tbl_01kfxgjd94fn9stqm45rqr2pnz",
"last_id": "tbl_02abc2def3ghjkmnpqrs4uvwxz"
}Returns Examples
{
"data": [
{
"id": "tbl_01kfxgjd94fn9stqm45rqr2pnz",
"created_at": "2026-01-15T10:35:00Z",
"name": "staffing__head_count",
"object": "table",
"sheet_name": "Staffing",
"structured_sheet_id": "ss_01kfxgjd94fn9stqm42nejb627",
"type": "relational"
},
{
"id": "tbl_02abc2def3ghjkmnpqrs4uvwxz",
"created_at": "2026-01-15T10:35:00Z",
"name": "staffing__head_count__aggregations",
"object": "table",
"sheet_name": "Staffing",
"structured_sheet_id": "ss_01kfxgjd94fn9stqm42nejb627",
"type": "aggregation"
}
],
"has_more": false,
"object": "list",
"first_id": "tbl_01kfxgjd94fn9stqm45rqr2pnz",
"last_id": "tbl_02abc2def3ghjkmnpqrs4uvwxz"
}