Retrieve a table
structured_sheets.tables.retrieve(strtable_id, TableRetrieveParams**kwargs) -> TableResponse
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
import os
from deeptable import DeepTable
client = DeepTable(
api_key=os.environ.get("DEEPTABLE_API_KEY"), # This is the default and can be omitted
)
table_response = client.structured_sheets.tables.retrieve(
table_id="tbl_01kfxgjd94fn9stqm45rqr2pnz",
structured_sheet_id="ss_01kfxgjd94fn9stqm42nejb627",
)
print(table_response.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"
}