POST
/
v1
/
tables
/
{table_id}
/
rows
Create Table 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",
    "parent_row_id": "<string>",
    "data": {},
    "metadata": {},
    "parent_data": {}
  }
]

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

Query Parameters

include_parent_data
boolean
default:false

Body

application/json
rows
RowDataSchema · object[]
required
run
boolean
default:false

Response

Successful Response

id
string
required
created_at
string<date-time>
required

Row creation time.

parent_row_id
string | null

ID of the parent row, if any.

data
object
metadata
object | null

Additional metadata

parent_data
object | null

Data from the parent row, if requested and available.