Skip to main content
GET
/
v1
/
tables
Table.List
curl --request GET \
  --url https://api.retab.com/v1/tables \
  --header 'Authorization: Bearer <token>'
{
  "tables": []
}
List tables available in the current environment.
Python
tables = client.tables.list()
TypeScript
const tables = await client.tables.list();
Go
tables, err := client.Tables.List(ctx)
Java
// List tables with the Retab Java client.
cURL
curl https://api.retab.com/v1/tables -H "Authorization: Bearer $RETAB_API_KEY"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

project_id
string | null

Only return tables belonging to this project.

Response

Successful Response

tables
WorkflowTable · object[]