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'
The slug of the organization or user account.
Successful response
The response is of type object
.
Was this page helpful?