Skip to main content

Usage Monitoring

This endpoint provides real-time information about your API usage, including details on your subscription plan, the total number of conversions, remaining conversions, and the expiration date for current limits.

Endpoint Details

Method: GET

https://api.pdfbolt.com/v1/usage

Example

Below is an example response from the usage endpoint:

{
"plan": "BASIC_MONTHLY",
"recurring": [
{
"total": 2000,
"left": 999,
"expiryAt": "2025-01-29T23:59:26Z",
"overage": 0
}
],
"oneTime": [
{
"total": 1000,
"left": 895,
"expiryAt": "2025-01-12T23:59:26Z"
}
]
}

Response Parameters

ParameterTypeDescriptionPossible ValuesExample Value
planstring
  • Subscription plan name.
All plan namesDEVELOPER_MONTHLY
recurringarray
  • Details of recurring document conversion plan.
Array with objects[{"total": 2000, "left": 999, "expiryAt": "2025-01-29T23:59:26Z"}]
recurring.totalnumber
  • Total number of recurring conversions available.
Any positive integer2000
recurring.leftnumber
  • Number of remaining recurring conversions.
  • Includes 0 if no conversions are left.
Any non-negative integer999
recurring.expiryAtstring (ISO 8601)
  • Expiration date and time for the recurring limit.
ISO 8601 datetime string in UTC2025-01-29T23:59:26Z
recurring.overagenumber
  • Number of overage conversions used for recurring plans.
Any non-negative integer0
oneTimearray
  • Details of one-time request packs.
Array of objects[{"total": 1000, "left": 895, "expiryAt": "2025-01-29T23:59:26Z"}]
oneTime.totalnumber
  • Total number of one-time conversions available.
Any positive integer1000
oneTime.leftnumber
  • Number of remaining one-time conversions.
  • Includes 0 if no conversions are left.
Any non-negative integer895
oneTime.expiryAtstring (ISO 8601)
  • Expiration date and time for the one-time limit.
ISO 8601 datetime string in UTC2025-01-12T23:59:26Z