Transcripts

List transcripts

GET
Retrieve a list of transcripts you created. Transcripts are sorted from newest to oldest. The previous URL always points to a page with older transcripts.

Query parameters

limitintegerOptional
Maximum amount of transcripts to retrieve
statusenumOptional
Filter by transcript status
Allowed values: queuedprocessingcompletederror
created_onstringOptional
Only get transcripts created on this date
before_idstringOptional
Get transcripts that were created before this transcript ID
after_idstringOptional
Get transcripts that were created after this transcript ID
throttled_onlybooleanOptional
Only get throttled transcripts, overrides the status filter

Response

This endpoint returns an object
page_details
object
Details of the transcript page. Transcripts are sorted from newest to oldest. The previous URL always points to a page with older transcripts.
transcripts
list of objects
GET
1curl https://api.assemblyai.com/v2/transcript \
2 -H "Authorization: <apiKey>"
Response
1{
2 "page_details": {
3 "limit": 3,
4 "result_count": 3,
5 "current_url": "https://api.assemblyai.com/v2/transcript?limit=3",
6 "prev_url": "https://api.assemblyai.com/v2/transcript?limit=3&before_id=28a73d01-98db-41dd-9e98-2533ba0af117",
7 "next_url": "https://api.assemblyai.com/v2/transcript?limit=3&after_id=b33f4691-85b7-4f31-be12-a87cef1c1229"
8 },
9 "transcripts": [
10 {
11 "id": "b33f4691-85b7-4f31-be12-a87cef1c1229",
12 "resource_url": "https://api.assemblyai.com/v2/transcript/b33f4691-85b7-4f31-be12-a87cef1c1229",
13 "status": "completed",
14 "created": "2024-03-11T21:29:59Z",
15 "completed": "2024-03-11T21:30:07Z",
16 "audio_url": "http://deleted_by_user",
17 "error": "error"
18 },
19 {
20 "id": "ce522f10-d204-42e8-a838-6b95098145cc",
21 "resource_url": "https://api.assemblyai.com/v2/transcript/ce522f10-d204-42e8-a838-6b95098145cc",
22 "status": "error",
23 "created": "2024-03-11T21:23:59Z",
24 "completed": "2024-01-15T09:30:00Z",
25 "audio_url": "https://storage.googleapis.com/client-docs-samples/nbc.mp3",
26 "error": "Download error, unable to download https://storage.googleapis.com/client-docs-samples/nbc.mp3. Please make sure the file exists and is accessible from the internet."
27 },
28 {
29 "id": "28a73d01-98db-41dd-9e98-2533ba0af117",
30 "resource_url": "https://api.assemblyai.com/v2/transcript/28a73d01-98db-41dd-9e98-2533ba0af117",
31 "status": "completed",
32 "created": "2024-03-11T21:12:57Z",
33 "completed": "2024-03-11T21:13:03Z",
34 "audio_url": "https://storage.googleapis.com/aai-docs-samples/nbc.mp3",
35 "error": "error"
36 }
37 ]
38}