Skip to main content
GET
/
billing
/
usage
Get current month usage for organization
curl --request GET \
  --url http://localhost:3000/billing/usage \
  --header 'Authorization: Bearer <token>'
{
  "apiCalls": {
    "used": 123,
    "limit": 123
  },
  "flags": {
    "used": 123,
    "limit": 123
  },
  "projects": {
    "used": 123,
    "limit": 123
  }
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Default Response

apiCalls
object
required
flags
object
required
projects
object
required