Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.veedcrawl.com/llms.txt

Use this file to discover all available pages before exploring further.

Veedcrawl uses a credit system to meter API usage. Some operations — like fetching metadata or checking your account — are always free. Others, like transcription and AI visual extraction, consume credits depending on the method used. You can check your remaining balance at any time by calling GET /v1/me.

Credit costs

OperationCredits
Metadata (GET /v1/metadata)0 — free
Account info (GET /v1/me)0 — free
Transcript — native captions1
Transcript — AI Whisper5
AI visual extraction10
Metadata is always free and never consumes credits, even on paid plans. Use it as a first pass to evaluate videos before committing credits to transcription or extraction.

Pricing plans

PlanPriceCreditsNotes
Free$050 on signupGood for testing; metadata stays free
Starter$9/month500/monthTranscripts and extraction; higher rate limits
Pro$29/month2,000/monthPriority processing; priority support

Checking your remaining credits

Call GET /v1/me to see how many credits your org has left. The response includes a creditsRemaining field.
curl "https://api.veedcrawl.com/v1/me" \
  -H "x-api-key: YOUR_API_KEY"
{
  "orgId": "org_abc123",
  "name": "My Org",
  "creditsRemaining": 87
}