Skip to main content
GET
/
api
/
v1
/
plans
/
{plan_id}
Get Plan
curl --request GET \
  --url https://api.example.com/api/v1/plans/{plan_id}
{
  "id": "...",
  "name": "Pro",
  "lookup_id": "pro",
  "type": "HYBRID",
  "billing_interval": "month",
  "currency": "USD",
  "features": [...],
  "charges": [
    {
      "id": "...",
      "type": "FIXED",
      "unit_price": 49.00,
      "display_name": "Base subscription",
      "status": "ACTIVE"
    },
    {
      "id": "...",
      "type": "USAGE",
      "meter_id": "...",
      "unit_price": 0.001,
      "display_name": "API calls",
      "status": "ACTIVE"
    }
  ]
}
plan_id
string
required
UUID of the plan
{
  "id": "...",
  "name": "Pro",
  "lookup_id": "pro",
  "type": "HYBRID",
  "billing_interval": "month",
  "currency": "USD",
  "features": [...],
  "charges": [
    {
      "id": "...",
      "type": "FIXED",
      "unit_price": 49.00,
      "display_name": "Base subscription",
      "status": "ACTIVE"
    },
    {
      "id": "...",
      "type": "USAGE",
      "meter_id": "...",
      "unit_price": 0.001,
      "display_name": "API calls",
      "status": "ACTIVE"
    }
  ]
}