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
}
}
]
}Returns a list of available plans and their quotas.
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'
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The slug of the organization or user account.
Successful response
List of available plans.
Show child attributes
The name of the plan.
"starter"
The monthly price of the plan.
"0"
Show child attributes
The number of rows read allowed for the specific plan.
1000000000
The number of rows written allowed for the specific plan.
25000000
The number of databases allowed for the specific plan.
500
The number of locations allowed for the specific plan.
3
The amount of storage allowed for the specific plan, in bytes.
9000000000
The number of groups allowed for the specific plan.
1
The number of bytes synced allowed for the specific plan, in bytes.
3000000000
Was this page helpful?