GET
/
v1
/
tables
List 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",
    "notify": false,
    "settings": {
      "exclude_from_search": false
    },
    "num_rows": 123,
    "num_child_tables": 0,
    "owner": {
      "id": "<string>",
      "email": "<string>"
    },
    "num_discovery_tasks": 0
  }
]

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

Successful Response

id
string
required

Table ID.

created_at
string<date-time>
required

Table creation time.

name
string
required

Table name.

kind
enum<string>
required

Table type.

Available options:
generic,
company,
people
num_rows
integer
required

Number of rows.

owner
object
required
description
string | null

Table description.

tags
string[] | null

Table tags.

notify
boolean
default:false

Whether to notify on table completion.

settings
object | null

Table settings including blacklist configuration.

num_child_tables
integer
default:0

Number of child tables associated with this table.

num_discovery_tasks
integer
default:0

Number of discovery tasks associated with this table.