Skip to main content
GET
/
v1
/
billing
/
usage
Get current plan usage vs limits
curl --request GET \
  --url http://0.0.0.0:3000/v1/billing/usage \
  --header 'Authorization: Bearer <token>'
{
  "plan": {
    "name": "Pro"
  },
  "usage": {
    "config_entries": {
      "current": 2,
      "limit": 10
    },
    "devices": {
      "current": 5,
      "limit": null
    },
    "automations": {
      "current": 3,
      "limit": 20
    }
  }
}

Authorizations

Authorization
string
header
required

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

Response

Plan usage

plan
object
usage
object