DELETE
/
v1
/
organizations
/
{organizationSlug}
/
databases
/
{databaseName}
curl -L -X DELETE 'https://api.turso.tech/v1/organizations/{organizationSlug}/databases/{databaseName}' \
  -H 'Authorization: Bearer TOKEN'
{
  "database": "my-db"
}
curl -L -X DELETE 'https://api.turso.tech/v1/organizations/{organizationSlug}/databases/{databaseName}' \
  -H 'Authorization: Bearer TOKEN'

Path Parameters

organizationSlug
string
required

The slug of the organization or user account.

databaseName
string
required

The name of the database.

Response

Successful response

database
string

The name of the database that was deleted.

Example:

"my-db"