Quotas & credits

API consumption shares the same monthly quota as the web UI. There is no separate “API quota”. Your plan grants a fixed number of transcripts per billing month, consumed by web and API together.

Plans

PlanPriceTranscripts / monthAPI access
Free$010 lifetimeSync only (single transcripts)
Starter$91,000Full (sync + bulk)
Pro$195,000Full (sync + bulk)
Business$4920,000Full (sync + bulk)

Compare plans on the pricing page.

When credits are deducted

ActionChargeRefund?
GET /transcript/:id1 credit, charged after the transcript fetch and any format conversion succeed (charge-on-success)No refund path needed. Failed fetches and failed formats never reach the charge step
POST /jobsN credits upfront, where N = number of videos resolvedPer-video failures during processing refund 1 credit each when the job finishes
DELETE /jobs/:idFreeRefunds the count of still-pending videos plus any videos that had already failed during processing but had not been refunded yet
GET /resolve and GET /usageFreen/a

Sync transcripts: charge-on-success

GET /transcript/:id uses a charge-on-success flow:

  1. Check that at least 1 credit is available
  2. Fetch the transcript
  3. Format if a non-JSON format was requested
  4. Charge 1 credit
  5. Send the response

A failure at any step before the charge, such as a fetch error or formatter error, never reaches the charge step, so you're not billed and there's no refund window. If another request consumes the remaining quota before the charge, this request returns 402.

Bulk job accounting walkthrough

Example: submit a channel with 500 videos on a Pro plan.

  1. POST resolves the channel to 500 videos. -500 credits.
  2. 480 videos succeed, 15 fail with video unavailable, 5 fail with no captions. +20 credits refunded when the job finishes.
  3. Net spend: 480 credits.

If you cancel mid-flight after 100 videos have processed, the remaining 400 pending credits are refunded.

Quota errors

If you don't have enough credits to fulfill a request, the API returns 402 insufficient_quota with the remaining and needed counts in the message.

Check your current state at any time with GET /api/v1/usage. The endpoint is free, doesn't consume quota, and is safe to poll before submitting bulk work.

We use Google Analytics cookies and note which site referred you, so we know how people find us. Nothing personal, nothing sold. See our Privacy Policy.