Introspect the current workspace’s plan, this period’s usage, and the limits
those numbers count against — useful for showing quota in your own dashboard or
throttling before you hit a 422.
Get usage
GET /api/v1/account/usage · any valid token
curl https://in.bio/api/v1/account/usage \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Accept: application/json"{
"data": {
"plan": "pro",
"period_start": "2026-07-01",
"usage": {
"links_created": 320,
"human_clicks": 48210,
"api_requests": 1544
},
"limits": {
"links_per_month": 2000,
"human_clicks_per_month": 100000,
"api_requests_per_minute": 60
}
}
}| Field | Type | Description |
|---|---|---|
plan |
string | Current plan: free, lite, pro, or business. |
period_start |
date | Start of the current billing period (YYYY-MM-DD). |
usage.links_created |
integer | Links created this period. |
usage.human_clicks |
integer | Human clicks tracked this period. |
usage.api_requests |
integer | API requests this period. |
limits.links_per_month |
integer | Monthly link-creation limit. |
limits.human_clicks_per_month |
integer | Monthly tracked-click limit. |
limits.api_requests_per_minute |
integer | Per-minute API rate limit. |