Billing API
Check your balance, view top-up history, and understand Pro/Lite per-call pricing.
Get Balance
GET
/v1/balancecurl
curl https://api.voxparse.com/v1/balance \
-H "X-API-Key: YOUR_API_KEY"Response
{
"balance_cents": 4250,
"balance_dollars": "42.5000",
"expired": false,
"plan_rates": {
"pro": "$0.39/hr",
"lite": "$0.15/hr"
},
"recent_topups": [...]
}Plan Pricing
Two flat-rate plans selected per API call via the plan parameter:
| Plan | Rate | Features |
|---|---|---|
Pro (plan=pro) | $0.39/hr | Full 11-feature AI analysis JSON (summary, sentiment, compliance, financial, action_items, transcript_cleaned, optional features) |
Lite (plan=lite) | $0.15/hr | Transcript, diarization, and transcript_cleaned only |
Example: 1,000 hours on Pro = $390. 1,000 hours on Lite = $150. Same rate regardless of volume — no graduated tiers.
Per-call billing: Each API call is billed individually based on the audio duration. The rate applied depends on the
plan parameter used in your transcription request (pro or lite).Top-up Products
GET
/billing/productsLists available prepaid top-up amounts. No authentication required. Credits expire after 6 months of account inactivity.