Skip to main content
GET
/
v1
/
tables
/
{table_id}
Get Table
curl --request GET \
  --url https://api.retab.com/v1/tables/{table_id} \
  --header 'Api-Key: <api-key>'
{
  "table": {
    "id": "<string>",
    "name": "<string>",
    "filename": "<string>",
    "row_count": 123,
    "source_file_id": "",
    "snapshot_file_id": "",
    "columns": [],
    "sample_rows": [],
    "metadata": {},
    "uploaded_by_user_id": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.retab.com/llms.txt

Use this file to discover all available pages before exploring further.

Get one table’s metadata, schema, and sample rows.
Python
table = client.tables.get(table_id="workflow_table_123")
TypeScript
const table = await client.tables.get("workflow_table_123");
Go
table, err := client.Tables.Get(ctx, "workflow_table_123")
Java
// Get table metadata with the Retab Java client.
cURL
curl https://api.retab.com/v1/tables/workflow_table_123 \
  -H "Api-Key: $RETAB_API_KEY"

Authorizations

Api-Key
string
header
required

Path Parameters

table_id
string
required

Response

Successful Response

table
WorkflowTable · object
required