← Back to Blog Plans & Pricing

VoxParse Pro vs Lite: Which Plan Fits Your Workflow?

May 2, 2026·8 min read
VoxParse Pro vs Lite plan comparison - two tiers of API processing

VoxParse offers two pricing tiers: Pro at $0.39/hr and Lite at $0.15/hr. Both are pay-as-you-go with no monthly minimums, no contracts, and no account-level lock-in. You choose which plan to use on every single API request by passing plan=pro or plan=lite.

This guide breaks down exactly what each plan includes, when to use which, and how to switch between them — so you can optimize both cost and capability.

Side-by-side comparison

FeaturePro ($0.39/hr)Lite ($0.15/hr)
Transcription
Speaker diarization
Polished & verbatim modes
PII redaction
Call summary & outcome
Sentiment analysis
Compliance detection
Financial extraction
Action items
Topic detection
Entity detection
Content moderation
Auto chapters
Translation (50+ languages)
Custom vocabulary
Custom instructions

The short version: Lite gives you a high-quality transcript with speaker labels. Pro gives you that plus a full suite of AI-powered analysis in a single API call.

What Pro includes that Lite doesn't

Pro's 11 analysis features are designed for teams that need structured intelligence from calls — not just text. Here's what you get:

See the full feature documentation for API parameters and response schemas.

When to use Lite

Lite is purpose-built for workflows where you need accurate text and speaker labels — but don't need AI analysis. Common use cases:

At $0.15/hr, Lite is competitive with — or cheaper than — competitors' base transcription rates, and it includes diarization that others charge $0.02/hr extra for.

When to use Pro

Pro is built for teams that need to extract actionable intelligence from every call. If you'd otherwise need to pipe your transcript through a separate LLM or NLP service, Pro almost certainly saves you money and engineering time.

Switching between plans

There's no account-level plan selection. You choose per request:

Pro request

curl -X POST https://api.voxparse.com/v1/transcribe \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "[email protected]" \
  -F "plan=pro" \
  -F "topic_detection=true" \
  -F "entity_detection=true"

Lite request

curl -X POST https://api.voxparse.com/v1/transcribe \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "[email protected]" \
  -F "plan=lite"

You can even process the same audio file twice — once on Lite for archival, once on Pro for analysis — and only pay each rate for that specific request.

What happens when you mix plans and features?

If you pass plan=lite with Pro-only feature flags (like topic_detection=true), the features are silently ignored. The request succeeds at the Lite rate, and only the transcript and diarization appear in the response. No error, no auto-upgrade, no surprise charges.

This is by design — it means you can use the same API integration code for both plans and simply toggle the plan field to control cost and output depth.

Cost at scale

Monthly HoursPro ($0.39/hr)Lite ($0.15/hr)Savings on Lite
100 hrs$39$15$24 (62%)
500 hrs$195$75$120 (62%)
1,000 hrs$390$150$240 (62%)
5,000 hrs$1,950$750$1,200 (62%)
10,000 hrs$3,900$1,500$2,400 (62%)

The optimal strategy for most teams: use Pro for calls that need analysis (QA reviews, compliance audits, customer intelligence) and Lite for everything else (archival, backlog transcription, internal notes).

How both plans compare to competitors

Even at their respective price points, both VoxParse plans deliver more value than competing services:

FeatureVoxParse Lite ($0.15)AssemblyAI Best ($0.15)
Transcription
Speaker diarizationIncluded+$0.02/hr
PII redactionIncludedExtra cost
Polished mode
Verbatim mode

At the same $0.15/hr price point, VoxParse Lite includes diarization and PII redaction for free. AssemblyAI's comparable plan charges extra for diarization ($0.02/hr), effectively making their real price $0.17/hr for the same feature set. See our full pricing comparison for the Pro tier breakdown.

Try both plans free

5 free hours included. Switch between Pro and Lite per request — no commitment.

Get your API key →

Bottom line

Don't overthink it. Start with Pro to see the full capabilities, then drop to Lite for requests where you don't need analysis. The per-request pricing model means you never pay for more than you use — and you can always switch back.

Read the analysis features documentation for complete API reference, or check the pricing page for current rates.