Tables
Create (beta)
Create a new Dune table with the specified name and namespace.
POST
This endpoint is currently in beta, and may change without warning.
The resulting table will be empty, and can be inserted into with the /insert endpoint.
- A table must currently be created as public. If the request tries to create a private table, it will fail.
- If a table already exists with the same name, the request will fail.
- Column names in the table can’t start with a special character or a digit.
- To delete a table, you must go to
user settings (dune.com) -> data -> delete
. - Creating a table does not incur credits.
Authorizations
The API key of your team or user.
Path Parameters
The namespace of the table to create. Must be the name of your associated API key, i.e. either my_user
or my_team
.
Example:
"my_user"
The name of the table to create. Must begin with dataset_
and contain only lowercase letters, digits, and underscores.
Example:
"dataset_my_data"
Body
application/json
Create a new Dune Table for uploads
The body is of type object
.
Response
201
application/json
The Dune table namespace.table_name
was created successfully.
The response is of type object
.