GET
/
v1
/
tables
curl --request GET \
  --url https://api.extruct.ai/v1/tables \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "name": "<string>",
    "description": "<string>",
    "tags": [
      "<string>"
    ],
    "kind": "generic",
    "num_rows": 123,
    "owner": {
      "id": "<string>",
      "email": "<string>"
    }
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

offset
integer | null
limit
integer | null

Response

200
application/json

Successful Response

The response is of type object[].