POST
/
v1
/
table
/
{name}
/
insert
curl --request POST \
  --url https://{db}.{region}.api.lancedb.com/v1/table/{name}/insert/ \
  --header 'Content-Type: application/vnd.apache.arrow.stream' \
  --header 'x-api-key: <api-key>'
This response does not have an example.

Authorizations

x-api-key
string
header
required

Path Parameters

name
string
required

name of the table

Query Parameters

mode
enum<string>
default:append

The mode of insertion. If overwrite, the existing data will be replaced. If append, the new data will be appended to the existing data.

Available options:
overwrite,
append

Body

application/vnd.apache.arrow.stream ยท file
Arrow IPC stream buffer

The body is of type file.

Response

200

Insert successful