Resources
- Databases
- Groups
- Locations
Organizations
- Organizations
- Members
- Invites
- Audit Logs
API Tokens
- API Tokens
Organizations
List Plans
Organizations
List Plans
Returns a list of available plans and their quotas.
GET
/
v1
/
organizations
/
{organizationSlug}
/
plans
curl -L https://api.turso.tech/v1/organizations/{organizationSlug}/plans \
-H 'Authorization: Bearer TOKEN'
{
"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
}
}
]
}
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
List of available plans.
The name of the plan.
Example:
"starter"
The monthly price of the plan.
Example:
"0"
The number of rows read allowed for the specific plan.
Example:
1000000000
The number of rows written allowed for the specific plan.
Example:
25000000
The number of databases allowed for the specific plan.
Example:
500
The number of locations allowed for the specific plan.
Example:
3
The amount of storage allowed for the specific plan, in bytes.
Example:
9000000000
The number of groups allowed for the specific plan.
Example:
1
The number of bytes synced allowed for the specific plan, in bytes.
Example:
3000000000
Was this page helpful?
curl -L https://api.turso.tech/v1/organizations/{organizationSlug}/plans \
-H 'Authorization: Bearer TOKEN'
{
"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
}
}
]
}