Skip to main content

Usage

GET /v1/usage

Get current usage counters and plan limits for the billing period.

Example

curl https://api.vidocu.ai/v1/usage \
-H "Authorization: Bearer vdo_live_your_key_here"

Response 200 OK

{
"plan": "growth",
"period": {
"start": "2024-02-01T00:00:00.000Z",
"end": null
},
"usage": {
"apiCalls": 1542,
"videoMinutes": 45.3,
"exports": 12,
"analyses": 28,
"translations": 5,
"helpArticles": 8,
"voiceovers": 3
},
"limits": {
"videoMinutesPerMonth": 120,
"requestsPerMinute": 200
}
}

Response fields

FieldTypeDescription
planstringCurrent plan: starter, growth, scale, or enterprise
period.startstringBilling period start
period.endstring | nullBilling period end (null for current period)
usage.apiCallsnumberTotal API calls this period
usage.videoMinutesnumberVideo minutes processed
usage.exportsnumberVideos exported
usage.analysesnumberVideos analyzed
usage.translationsnumberTranslations completed
usage.helpArticlesnumberArticles generated
usage.voiceoversnumberVoiceovers generated
limits.videoMinutesPerMonthnumberMonthly video minute limit (-1 = unlimited)
limits.requestsPerMinutenumberAPI requests per minute limit

Errors

StatusCodeCause
401authentication_errorInvalid or missing API key