View your quota
Your credit balance is visible on the main dashboard. You can also query it programmatically to gate large batch jobs.
Dashboard
The usage widget on your dashboard shows:
- Credits used this billing period
- Credits remaining (subscription + purchased packs combined)
- Date your subscription credits reset
API endpoint
GET
/v1/usage/quota Response fields
| Field | Type | Description |
|---|---|---|
creditsUsed | integer | Credits consumed this billing period |
subscriptionCredits | integer | Remaining credits from the subscription plan |
purchasedCredits | integer | Remaining credits from purchased packs |
totalRemaining | integer | Total remaining credits (subscription + packs) |
periodResetAt | string | ISO 8601 timestamp when subscription credits reset |
Credits are consumed in order: subscription credits (earliest expiry first), then purchased pack credits (earliest expiry first).
curl "https://api.pdfox.com/v1/usage/quota" \ -H "Authorization: Bearer pdfs_live_xxxx"
{
"creditsUsed": 47,
"subscriptionCredits": 453,
"purchasedCredits": 500,
"totalRemaining": 953,
"periodResetAt": "2026-06-01T00:00:00Z"
}