BETTERMENU
Entitlements

List Purchasable Plans

List the subscription plans the calling organization can purchase, including display name, feature gates, recurring price, and which plan is currently active.

GET
/entitlements/plans

Response Body

application/json

curl -X GET "https://api.bettermenu.live/entitlements/plans"
{
  "plans": [
    {
      "plan_name": "string",
      "display_name": "string",
      "feature_gates": [
        "string"
      ],
      "price": {
        "price_id": "string",
        "amount_cents": 0,
        "currency": "usd",
        "interval": "month"
      },
      "is_current": true
    }
  ]
}