Retrieve a table
client.StructuredSheets.Tables.Get(ctx, tableID, query) (*TableResponse, error)
GET/v1/structured-sheets/{structured_sheet_id}/tables/{table_id}
Get details of a specific table extracted from the structured sheet. Only available when conversion status is 'completed'.
Retrieve a table
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"),
)
tableResponse, err := client.StructuredSheets.Tables.Get(
context.TODO(),
"tbl_01kfxgjd94fn9stqm45rqr2pnz",
deeptable.StructuredSheetTableGetParams{
StructuredSheetID: "ss_01kfxgjd94fn9stqm42nejb627",
},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", tableResponse.ID)
}
{
"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"
}Returns Examples
{
"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"
}