Reference / Billing

This application's metered usage against its plan.

GET /v1/billing/usage
Secret API key operationId: usage

Authorization

Server-to-server. Send a secret key as a Bearer token plus the x-application-id header.

Responses

200 Usage report
{
  "data": {
    "mau": 0,
    "mau_limit": 0,
    "over_limit": false,
    "period": "string",
    "plan_key": "string",
    "plan_name": "string",
    "price_cents": 0,
    "signins_30d": 0,
    "signups_30d": 0,
    "status": "string",
    "trend": [
      {
        "day": null,
        "signins": null,
        "signups": null
      }
    ],
    "utilization": 0
  },
  "error": {
    "code": "string",
    "message": "string"
  },
  "meta": {
    "timestamp": "string"
  },
  "success": false
}

Request

curl -X GET "http://localhost:8080/v1/billing/usage" \

Try it

live request
GET http://localhost:8080/v1/billing/usage