Account & billing  /  List plans

List plans

GET/v1/plans

Returns the fixed set of plans. Prices are in cents, and a limit of -1 means unlimited. The enterprise plan is custom-priced (price 0), so render it as contact sales rather than a normal pick.

Response fields
id
string
Plan id: standard, premium, or enterprise.
name
string
Display name.
price_monthly
integer
Monthly price in cents. 0 means contact sales (enterprise).
flows_limit
integer
Flows allowed. -1 means unlimited.
conversions_limit
integer
Monthly conversions allowed. -1 means unlimited.
is_enterprise
boolean
True for the custom-priced enterprise plan.
GET/v1/plans
curl https://app.converly.io/api/v1/plans \
  -H "Authorization: Bearer sk_live_…"
200 OK
{
  "data": [
    { "id": "standard", "name": "Standard",
      "price_monthly": 1900, "flows_limit": 1,
      "conversions_limit": 100, "is_enterprise": false },
    { "id": "premium", "name": "Premium",
      "price_monthly": 4900, "flows_limit": 5,
      "conversions_limit": 500, "is_enterprise": false },
    { "id": "enterprise", "name": "Enterprise",
      "price_monthly": 0, "flows_limit": -1,
      "conversions_limit": -1, "is_enterprise": true }
  ]
}