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,
"expires": "2025-01-29T23:59:26Z",
"overage": 0
}
],
"oneTime": [
{
"total": 500,
"left": 350,
"expires": "2025-06-15T23:59:59Z"
}
]
}
Response Parameters
| Parameter | Type | Description | Possible Values | Example Value |
|---|---|---|---|---|
plan | string |
| All plan names | DEVELOPER_MONTHLY |
recurring | array |
| Array with objects | [{"total": 2000, "left": 999, "expires": "2025-01-29T23:59:26Z"}] |
recurring.total | number |
| Any positive integer | 2000 |
recurring.left | number |
| Any non-negative integer | 999 |
recurring.expires | string (ISO 8601) |
| ISO 8601 datetime string in UTC | 2025-01-29T23:59:26Z |
recurring.overage | number |
| Any non-negative integer | 0 |
oneTime | array |
| Array with objects | [{"total": 500, "left": 350, "expires": "2025-06-15T23:59:59Z"}] |
oneTime.total | number |
| Any positive integer | 500 |
oneTime.left | number |
| Any non-negative integer | 350 |
oneTime.expires | string (ISO 8601) |
| ISO 8601 datetime string in UTC | 2025-06-15T23:59:59Z |