Insert the data in a file into a table.
This endpoint is currently in beta, and may change without warning.
To be able to insert into a table, it must have been created with the /create endpoint.
/insert
request consumes 10 credits.Content-Type: text/csv
)CSV files must use a comma as delimiter, and the column names in the header must match the column names of the table.
Content-Type: application/x-ndjson
)These are files where each line is a complete JSON object which creates one table row. Each line must have keys that match the column names of the table.
The API key of your team or user.
The namespace of the table to insert into (e.g. my_user
).
The name of the table to insert into (e.g. interest_rates
).
The file to insert into the table.
The body is of type file
.
Successful operation
The response is of type object
.
Insert the data in a file into a table.
This endpoint is currently in beta, and may change without warning.
To be able to insert into a table, it must have been created with the /create endpoint.
/insert
request consumes 10 credits.Content-Type: text/csv
)CSV files must use a comma as delimiter, and the column names in the header must match the column names of the table.
Content-Type: application/x-ndjson
)These are files where each line is a complete JSON object which creates one table row. Each line must have keys that match the column names of the table.
The API key of your team or user.
The namespace of the table to insert into (e.g. my_user
).
The name of the table to insert into (e.g. interest_rates
).
The file to insert into the table.
The body is of type file
.
Successful operation
The response is of type object
.