Skip to main content
GET
/
v1
/
billing
/
plans
List available plans
curl --request GET \
  --url http://0.0.0.0:3000/v1/billing/plans \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 1,
    "name": "Free",
    "price": 0,
    "currency": "BRL",
    "max_config_entries": 3,
    "max_automations": 5,
    "max_exposed_entities": 10
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

List of plans

id
integer
name
string
price
number
currency
string
max_config_entries
integer | null
max_automations
integer | null
max_exposed_entities
integer | null