POST
/
v1
/
tables
/
{table_id}
/
run
curl --request POST \
  --url https://api.extruct.ai/v1/tables/{table_id}/run \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "mode": "new"
}'
{
  "id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "status": "created",
  "rows": [
    "<string>"
  ],
  "columns": [
    "<string>"
  ],
  "num_requested_cells": 123,
  "mode": "new"
}

Trigger AI research agents to enrich the data in a table. Table enrichment is a long-running process. You can check the status of the table using the GET /v1/tables/ endpoint.

Authorizations

Authorization
string
header
required

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

Path Parameters

table_id
string
required

Body

application/json
mode
enum<string>

Table run execution mode. NEW (default) - run cells without values; ALL - run all cells; FAILED - run failed cells

Available options:
new,
all,
failed,
stuck_failed_new
rows
string[] | null
columns
string[] | null

Response

200
application/json
Successful Response
id
string
required
created_at
string
required
status
enum<string>
required
Available options:
created,
in_progress,
done,
failed
rows
string[] | null
required
columns
string[] | null
required
num_requested_cells
integer
required
mode
enum<string>
required
Available options:
new,
all,
failed,
stuck_failed_new