WellMarked Docs
API referenceExtraction

Check your usage for the current billing period

Return the calling key's request count for the current billing period, the plan's included allowance, and when the counter resets. The period is anchored to your subscription date, not the calendar month, so `resets_at` is the authoritative value to schedule against. This endpoint is unmetered — checking your usage never consumes quota.

GET
/usage

Authorization

BearerAuth
AuthorizationBearer <token>

Your API key, sent as Authorization: Bearer wm_.... Keys are wm_ followed by 40 hex characters. Create one with POST /register (free, no auth) or POST /keys.

In: header

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/usage"
{  "limit": 0,  "period": "string",  "plan": "string",  "remaining": 0,  "used": 0}