Use Keywords AI gateway to call and log AssemblyAI speech-to-text models.
Authentication
All endpoints require API key authentication:
Authorization: Bearer YOUR_API_KEY
X-Assemblyai-Api-Key: YOUR_ASSEMBLYAI_API_KEY
Path Parameters
The AssemblyAI transcript ID to retrieve.
Your AssemblyAI API key for authentication with AssemblyAI services.
Examples
import requests
url = "https://api.keywordsai.co/api/assemblyai/v2/transcript/{transcript_id}"
headers = {
"Authorization": "Bearer YOUR_KEYWORDSAI_API_KEY",
"X-Assemblyai-Api-Key": "YOUR_ASSEMBLYAI_API_KEY"
}
response = requests.get(url, headers=headers)
print(response.json())