Table Execution
Get Table Data
API Reference
Table Management
Company Search
AI Web Search
Table Execution
Get Table Data
Get table data, optionally with pagination.
GET
/
v1
/
tables
/
{table_id}
/
data
curl --request GET \
--url https://api.extruct.ai/v1/tables/{table_id}/data \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"name": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"kind": "generic",
"columns": [
{
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"config": {
"kind": "input",
"name": "<string>",
"key": "<string>"
}
}
],
"owner": {
"id": "<string>",
"email": "<string>"
},
"status": {
"num_rows": 0,
"num_output_columns": 0,
"num_input_columns": 0,
"num_cells_completed": 0,
"num_cells_in_progress": 0,
"num_columns": 123,
"run_status": "running"
},
"rows": [
{
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"is_missing_inputs": true,
"data": {},
"metadata": {}
}
],
"discovery_tasks": [
{
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"status": "created",
"query": "<string>",
"desired_num_results": 123,
"is_exhausted": false,
"num_results": 123,
"table_id": "<string>"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200
application/json
Successful Response
Table ID.
Table creation time.
Table name.
Table type.
Available options:
generic
, company
Available options:
running
, idle
Number of rows in the table
Number of output columns in the table
Number of input columns in the table
Number of non-input cells that have been completed
Number of non-input cells that are in progress
Row creation time.
True if at least one of the input column cells that are depended upon is missing.
Additional metadata
Table description.
Table tags.
Available options:
created
, in_progress
, done
, failed
curl --request GET \
--url https://api.extruct.ai/v1/tables/{table_id}/data \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"name": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"kind": "generic",
"columns": [
{
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"config": {
"kind": "input",
"name": "<string>",
"key": "<string>"
}
}
],
"owner": {
"id": "<string>",
"email": "<string>"
},
"status": {
"num_rows": 0,
"num_output_columns": 0,
"num_input_columns": 0,
"num_cells_completed": 0,
"num_cells_in_progress": 0,
"num_columns": 123,
"run_status": "running"
},
"rows": [
{
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"is_missing_inputs": true,
"data": {},
"metadata": {}
}
],
"discovery_tasks": [
{
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"status": "created",
"query": "<string>",
"desired_num_results": 123,
"is_exhausted": false,
"num_results": 123,
"table_id": "<string>"
}
]
}