Transcribeer en vertaal media programmatisch, controleer de status en haal voltooide bestanden op.
$0.99 per uur audio of video
Eén vast tarief, berekend op de lengte van elk bestand. De API gebruikt hetzelfde credit als de rest van de site.
Geef je API-sleutel mee als Bearer-token en verstuur daarna een bestand of media-URL. Deze voorbeelden gebruiken automatisch de huidige host.
curl -X POST "$ORIGIN/api/v1/transcriptions" \
-H "Authorization: Bearer YOUR_API_KEY" \
-F "language=auto-detect" \
-F "features=speaker-attribution,llm-inference" \
-F "languagesToTranslateTo=Spanish,French" \
-F "file=@/path/to/media.mp3"
curl -X POST "$ORIGIN/api/v1/transcriptions" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"language": "auto-detect",
"features": "speaker-attribution,llm-inference",
"languagesToTranslateTo": "Spanish,French",
"downloadLink": "https://example.com/media.mp3"
}'
# Gebruik het "id" dat wordt teruggegeven door POST /api/v1/transcriptions:
curl -H "Authorization: Bearer YOUR_API_KEY" \
"$ORIGIN/api/v1/transcriptions/YOUR_TRANSCRIPTION_ID"