Billing

Get Billing Usage

GET
/v1/billing/usage
AuthorizationBearer <token>

API key minted via POST /v1/api-keys (format mk_live_...)

In: header

Response Body

application/json

application/json

curl -X GET "https://api.mentio.dev/v1/billing/usage"
{
  "cycle": "string",
  "status": "none",
  "activeKeywords": 0,
  "keywordMax": 0,
  "relevantMentions": 0,
  "includedMentions": 0,
  "overageMentions": 0,
  "billableMentions": 0,
  "billedMentions": 0,
  "trial": {
    "endsAt": 0,
    "mentionsUsed": 0,
    "mentionsLimit": 0,
    "expired": true
  }
}
{
  "error": {
    "code": "string",
    "message": "string"
  }
}