Skip to main content
GET
/
api
/
public
/
plans
curl "https://api.crovver.com/api/public/plans?publicKey=pk_live_..."
{
  "success": true,
  "data": [
    {
      "id": "plan_starter",
      "name": "Starter",
      "priceAmount": 0,
      "billingInterval": "monthly",
      "trialDays": 0,
      "features": { "basic_analytics": true },
      "limits": { "api_calls": 1000, "team_members": 2 },
      "isSeatBased": false
    },
    {
      "id": "plan_pro",
      "name": "Pro",
      "priceAmount": 2900,
      "billingInterval": "monthly",
      "trialDays": 14,
      "features": { "basic_analytics": true, "advanced_analytics": true, "api_access": true },
      "limits": { "api_calls": 10000, "team_members": 10 },
      "isSeatBased": false
    },
    {
      "id": "plan_business",
      "name": "Business",
      "priceAmount": 5000,
      "billingInterval": "monthly",
      "trialDays": 0,
      "features": { "basic_analytics": true, "advanced_analytics": true, "api_access": true, "sso": true },
      "limits": { "api_calls": 100000 },
      "isSeatBased": true,
      "includedSeats": 10,
      "perSeatPrice": 500
    }
  ]
}
Returns all active plans for the organization associated with the provided public key. Use this to build your pricing page.

Query Parameters

publicKey
string
required
Your public key (pk_live_...)
curl "https://api.crovver.com/api/public/plans?publicKey=pk_live_..."
{
  "success": true,
  "data": [
    {
      "id": "plan_starter",
      "name": "Starter",
      "priceAmount": 0,
      "billingInterval": "monthly",
      "trialDays": 0,
      "features": { "basic_analytics": true },
      "limits": { "api_calls": 1000, "team_members": 2 },
      "isSeatBased": false
    },
    {
      "id": "plan_pro",
      "name": "Pro",
      "priceAmount": 2900,
      "billingInterval": "monthly",
      "trialDays": 14,
      "features": { "basic_analytics": true, "advanced_analytics": true, "api_access": true },
      "limits": { "api_calls": 10000, "team_members": 10 },
      "isSeatBased": false
    },
    {
      "id": "plan_business",
      "name": "Business",
      "priceAmount": 5000,
      "billingInterval": "monthly",
      "trialDays": 0,
      "features": { "basic_analytics": true, "advanced_analytics": true, "api_access": true, "sso": true },
      "limits": { "api_calls": 100000 },
      "isSeatBased": true,
      "includedSeats": 10,
      "perSeatPrice": 500
    }
  ]
}