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
}
]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
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.