Skip to main content

Usage Monitoring

The /v1/usage endpoint returns your current plan and recurring quota with expiration dates. It uses the same API-KEY as conversion endpoints. Use it to track your consumption.

Endpoint Details

Method: GET

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

Success Example

Complete request with authentication:

curl 'https://api.pdfbolt.com/v1/usage' \
-H 'API-KEY: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX'

Failure Example

If the request fails (e.g., missing or invalid API-KEY), the response is a JSON error object. See Error Handling.

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

Response Parameters

ParameterTypeDescriptionPossible ValuesExample Value
planstring (Enum)
  • Subscription plan name.
FREE
BASIC_MONTHLY
GROWTH_MONTHLY
ENTERPRISE_1_MONTHLY
ENTERPRISE_PRO_MONTHLY
BASIC_MONTHLY
recurringarray
  • Details of recurring document conversion plan.
Array of objects[{"total": 2000, "left": 1322, "expires": "2026-05-22T23:59:59Z", "overage": 0}]
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 integer1322
recurring.expiresstring (ISO 8601)
  • Expiration date and time for the current recurring period.
ISO 8601 datetime string in UTC2026-05-22T23:59:59Z
recurring.overagenumber
  • Number of conversions used beyond your plan limit, billed as extra.
  • Overage is disabled by default and can be enabled in your Dashboard.
Any non-negative integer0
oneTimearray
  • Details of one-time (non-recurring) credit packages.
Array of objects[{"total": 500, "left": 350, "expires": "2026-09-15T23:59:59Z"}]
oneTime.totalnumber
  • Total number of one-time conversions in the package.
Any positive integer500
oneTime.leftnumber
  • Number of remaining one-time conversions.
  • Includes 0 if no conversions are left.
Any non-negative integer350
oneTime.expiresstring (ISO 8601)
  • Expiration date and time for the one-time credit package.
ISO 8601 datetime string in UTC2026-09-15T23:59:59Z

Next Steps