Skip to main content
GET
/
api
/
v1
/
billing
/
quota
Get quota status
curl --request GET \
  --url https://api.logfleet.io/api/v1/billing/quota \
  --header 'Authorization: Bearer <token>'
{
  "agents": {
    "used": 123,
    "limit": 123,
    "percentage": 123
  },
  "logs": {
    "used": 123,
    "limit": 123,
    "percentage": 123
  },
  "metrics": {
    "used": 123,
    "limit": 123,
    "percentage": 123
  },
  "streaming": {
    "used": 123,
    "limit": 123,
    "percentage": 123
  }
}

Authorizations

Authorization
string
header
required

JWT token obtained from /auth/login

Response

Quota status

agents
object
logs
object
metrics
object
streaming
object