Skip to main content

Usage Monitoring

This endpoint provides real-time information about the current usage of the API. It allows monitoring of API consumption, including the number of successful conversions made and the remaining conversions in the current billing period.

Endpoint Details

Method: GET

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

Example

Below is example response from usage endpoint:

{
"plan": "DEVELOPER",
"recurring": [
{
"total": 2000,
"left": 999,
"expiryAt": "2024-11-21 23:59:59"
}
],
"oneTime": [
{
"total": 1000,
"left": 895,
"expiryAt": "2024-11-16 20:05:00"
}
]
}

Response Parameters

ParameterTypeDescriptionPossible ValuesExample Value
planstringSubscription plan name.All plan namesDEVELOPER
recurringarrayDetails of recurring document conversion plan.Array of objects[{"total": 2000, "left": 999, "expiryAt": "2024-11-16T20:05:00Z"}]
recurring.totalnumberTotal number of recurring conversions available.Any positive integer2000
recurring.leftnumberNumber of recurring conversions left.Any non-negative integer (including 0)999
recurring.expiryAtstring (ISO 8601)Expiry date and time for the recurring limit.ISO 8601 datetime string in UTC2024-11-21T23:59:59Z
oneTimearrayDetails of one-time request packs.Array of objects[{"total": 1000, "left": 895, "expiryAt": "2024-11-16T20:05:00Z"}]
oneTime.totalnumberTotal number of one-time conversions available.Any positive integer1000
oneTime.leftnumberNumber of one-time conversions left.Any non-negative integer (including 0)895
oneTime.expiryAtstring (ISO 8601)Expiry date and time for the one-time limit.ISO 8601 datetime string in UTC2024-11-16T20:05:00Z