Transcribe audio
curl --request POST \
--url https://api.aireserve.com/v1/audio/transcriptions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.aireserve.com/v1/audio/transcriptions"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.aireserve.com/v1/audio/transcriptions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Audio
Transcribe audio
Transcribe audio. model form field: scribe-v2 dispatches to ElevenLabs Scribe v2 via fal.ai; anything else (gpt-4o-mini-transcribe, the default) forwards the multipart to OpenAI verbatim
POST
/
v1
/
audio
/
transcriptions
Transcribe audio
curl --request POST \
--url https://api.aireserve.com/v1/audio/transcriptions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.aireserve.com/v1/audio/transcriptions"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.aireserve.com/v1/audio/transcriptions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Authorizations
Your AI Reserve API key (aireserve_api_…) from the API Keys page in the portal (https://portal.aireserve.com/keys).
Response
200
Default Response