Skip to main content
GET
/
frontend
/
api
/
v1
/
billing
/
plan
Get available plans
curl --request GET \
  --url https://{host}/frontend/api/v1/billing/plan \
  --header 'Authorization: Bearer <token>'
{
  "plans": [
    {
      "active": true,
      "amount": {
        "fixed": 123,
        "max": 123,
        "min": 123,
        "preset": 123,
        "tiers": [
          123
        ]
      },
      "created": "2023-11-07T05:31:56Z",
      "currency": "aed",
      "description": "<string>",
      "details": {},
      "id": "<string>",
      "name": "<string>",
      "recurring-interval": "month",
      "type": "recurring"
    }
  ]
}

Authorizations

Authorization
string
header
required

API Key Security (Header).

Query Parameters

include-inactive
boolean

Response

OK

plans
object[] | null