Get AI usage summary for the authenticated user
GET
/api/v3/organizations/{organisation}/ai/usage/me
const url = 'https://dashboard.quantcdn.io/api/v3/organizations/example/ai/usage/me';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://dashboard.quantcdn.io/api/v3/organizations/example/ai/usage/me \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”organisation
required
string
The organisation ID
Responses
Section titled “Responses”User AI usage summary
Media typeapplication/json
object
userId
string
currentMonth
string
monthly
object
spendCents
integer
requestCount
integer
daily
object
spendCents
integer
quota
object
monthlyLimit
Per-user monthly spend cap (object form, present when an org-level perUserMonthlyBudget is configured)
object
limitCents
The configured monthly cap in US cents
integer
usedPercent
Percentage of the cap consumed this month (0–100+)
number format: float
remainingCents
Cents remaining before the cap is hit; can be negative if overspent
integer
dailyLimit
Per-user daily spend cap (object form, present when an org-level perUserDailyBudget is configured)
object
limitCents
The configured daily cap in US cents
integer
usedPercent
Percentage of the cap consumed today (0–100+)
number format: float
remainingCents
Cents remaining before the cap is hit; can be negative if overspent
integer
resetsAt
UTC timestamp when the daily counter resets (always next UTC midnight)
string format: date-time
Example
{ "currentMonth": "2026-03"}Cannot determine caller identity
Failed to retrieve usage data
