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
id
string
required

Table ID.

created_at
string
required

Table creation time.

name
string
required

Table name.

kind
enum<string>
required

Table type.

Available options:
generic,
company
num_rows
integer
required

Number of rows.

owner
object
required
description
string | null

Table description.

tags
string[] | null

Table tags.