Account
Get Account Usage
Get account usage statistics vs plan limits
GET
Get Account Usage
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get account usage statistics vs plan limits
curl --request GET \
--url https://api.oviond.com/v1/account/usage \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"CURRENT_PLAN": {
"PROJECTS": 15,
"USERS": "UNLIMITED",
"PLAN": "<string>",
"PLAN_ID": "<string>",
"PRICE": 123,
"WHITE_LABEL": true,
"CUSTOM_DOMAIN": true,
"PDF": true,
"AUTOMATIONS": true,
"AGENCY_TOOLS": true,
"EMAIL_SUPPORT": true,
"LIVE_SUPPORT": true,
"ACCOUNT_MANAGER": true
},
"USAGE": {
"PROJECTS": 3,
"USERS": 2
}
}
}curl --request GET \
--url https://api.oviond.com/v1/account/usage \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"CURRENT_PLAN": {
"PROJECTS": 15,
"USERS": "UNLIMITED",
"PLAN": "<string>",
"PLAN_ID": "<string>",
"PRICE": 123,
"WHITE_LABEL": true,
"CUSTOM_DOMAIN": true,
"PDF": true,
"AUTOMATIONS": true,
"AGENCY_TOOLS": true,
"EMAIL_SUPPORT": true,
"LIVE_SUPPORT": true,
"ACCOUNT_MANAGER": true
},
"USAGE": {
"PROJECTS": 3,
"USERS": 2
}
}
}