cURL
curl --request GET \ --url https://api.keywordsai.co/api/assemblyai/v2/transcript/{transcript_id} \ --header 'Authorization: Bearer <token>' \ --header 'X-Assemblyai-Api-Key: <x-assemblyai-api-key>'
Documentation IndexFetch the complete documentation index at: https://docs.keywordsai.co/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.keywordsai.co/llms.txt
Use this file to discover all available pages before exploring further.
Authorization: Bearer YOUR_API_KEY X-Assemblyai-Api-Key: YOUR_ASSEMBLYAI_API_KEY
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())
Was this page helpful?