Usage
Get Usage
GET
/
v1
/
usage
curl --request GET \
--url https://api.vocode.dev/v1/usage \
--header 'Authorization: <authorization>'
{
"monthly_usage_limit_minutes": 123,
"monthly_usage_minutes": 123,
"plan_type": "plan_free",
"user_id": "<string>"
}
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
monthly_usage_limit_minutes
integer
monthly_usage_minutes
integer
requiredplan_type
enum<string>
requiredAn enumeration.
Available options:
plan_free
, plan_developer
, plan_enterprise
, plan_unlimited
user_id
string
requiredcurl --request GET \
--url https://api.vocode.dev/v1/usage \
--header 'Authorization: <authorization>'
{
"monthly_usage_limit_minutes": 123,
"monthly_usage_minutes": 123,
"plan_type": "plan_free",
"user_id": "<string>"
}