Skip to content

Search is only available in production builds. Try building and previewing the site to test it out locally.

TranscriptionAPI

A REST API for audio transcription. Submit audio files and receive text transcriptions with high accuracy using state-of-the-art speech recognition.

Authentication

Pass your API key as a bearer token in the Authorization header: Authorization: Bearer <your-api-key>

Base URL

https://api.example.com

Rate limits

100 requests per minute per API key

Endpoints

MethodPathDescription
GET/modelsList all available transcription models
GET/models/:idGet details about a specific model
POST/transcriptionsSubmit an audio file for transcription
GET/transcriptions/:idGet the status and result of a transcription job
DELETE/transcriptions/:idDelete a transcription job and its results

Error format

All errors return JSON: {“error”: “string”, “details”: []}