POST
/
v1
/
tables
/
{table_id}
/
rows
curl --request POST \
  --url https://api.extruct.ai/v1/tables/{table_id}/rows \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "rows": [
    {
      "data": {
        "input": "https://extruct.ai"
      }
    },
    {
      "data": {
        "input": "https://openai.com"
      }
    }
  ],
  "run": false
}'
[
  {
    "id": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "is_missing_inputs": true,
    "data": {},
    "metadata": {}
  }
]

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
rows
object[]
required
run
boolean
default:false

Response

200
application/json
Successful Response
id
string
required
created_at
string
required

Row creation time.

is_missing_inputs
boolean
required

True if at least one of the input column cells that are depended upon is missing.

data
object
metadata
object | null

Additional metadata