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

organizationSlug
string
required

The slug of the organization or user account.

Response

200 - application/json
Successful response
plans
object[]

List of available plans.