Resources
- Databases
- Groups
- Locations
Organizations
- Organizations
- Members
- Invites
- Audit Logs
API Tokens
- API Tokens
Organizations
List Plans
Returns a list of available plans and their quotas.
GET
/
v1
/
organizations
/
{organizationSlug}
/
plans
Copy
curl -L https://api.turso.tech/v1/organizations/{organizationSlug}/plans \
-H 'Authorization: Bearer TOKEN'
Copy
{
"plans": [
{
"name": "starter",
"price": "0",
"prices": [
{
"value": "29",
"timeline": "monthly"
}
],
"quotas": {
"rowsRead": 1000000000,
"rowsWritten": 25000000,
"databases": 500,
"locations": 3,
"storage": 9000000000,
"groups": 1,
"bytesSynced": 3000000000
}
}
]
}
Copy
curl -L https://api.turso.tech/v1/organizations/{organizationSlug}/plans \
-H 'Authorization: Bearer TOKEN'
Path Parameters
The slug of the organization or user account.
Response
200 - application/json
Successful response
The response is of type object
.
Was this page helpful?
Copy
curl -L https://api.turso.tech/v1/organizations/{organizationSlug}/plans \
-H 'Authorization: Bearer TOKEN'
Copy
{
"plans": [
{
"name": "starter",
"price": "0",
"prices": [
{
"value": "29",
"timeline": "monthly"
}
],
"quotas": {
"rowsRead": 1000000000,
"rowsWritten": 25000000,
"databases": 500,
"locations": 3,
"storage": 9000000000,
"groups": 1,
"bytesSynced": 3000000000
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.