list

View as MarkdownOpen in Claude

List transcriptions in the account.

Path parameters

AccountSidstringRequiredformat: "uuid"
The unique identifier for the account that created this transcription.

Query parameters

DateCreatedstringOptional
Filter by transcriptions created on this exact date (RFC 2822 format).
DateCreated<stringOptional
Filter by transcriptions created before this date (RFC 2822 format).
DateCreated>stringOptional
Filter by transcriptions created after this date (RFC 2822 format).
PageintegerOptional>=0Defaults to 0
The page number to retrieve (zero-indexed).
PageSizeintegerOptional1-1000Defaults to 50
The number of results per page. Default is 50, maximum is 1000.
PageTokenstringOptional
Token for cursor-based pagination. Required when navigating to pages beyond the first.

Response

uristringRequired
The URI of the current page.
first_page_uristringRequired
The URI of the first page.
next_page_uristring or nullRequired
The URI of the next page. Null if there are no more pages.
previous_page_uristring or nullRequired
The URI of the previous page. Null if this is the first page.
pageintegerRequired
The current page number (zero-indexed).
page_sizeintegerRequired
The number of items per page.
transcriptionslist of objectsRequired
List of transcriptions.

Response Example

Response
1{
2 "uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472ac/Transcriptions?Page=0&PageSize=50",
3 "first_page_uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472ac/Transcriptions",
4 "next_page_uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472ac/Transcriptions?Page=1&PageSize=50&PageToken=PAb3877c40-da60-4998-90ad-b792e98472tr",
5 "page": 0,
6 "page_size": 50,
7 "transcriptions": [
8 {
9 "sid": "b3877c40-da60-4998-90ad-b792e98472tr",
10 "account_sid": "b3877c40-da60-4998-90ad-b792e98472ac",
11 "api_version": "2010-04-01",
12 "recording_sid": "b3877c40-da60-4998-90ad-b792e98472re",
13 "date_created": "Thu, 27 Sep 2018 02:00:00 +0000",
14 "date_updated": "Fri, 28 Sep 2018 03:00:00 +0000",
15 "duration": 60,
16 "price": "-0.00025",
17 "price_unit": "USD",
18 "status": "completed",
19 "transcription_text": "Hello, this is a test transcription.",
20 "type": "",
21 "uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472ac/Transcriptions/b3877c40-da60-4998-90ad-b792e98472tr.json"
22 }
23 ]
24}

Example

1from signalwire.rest import RestClient
2
3client = RestClient(
4 project="your-project-id",
5 token="your-api-token",
6 host="your-space.signalwire.com",
7)
8
9transcriptions = client.compat.transcriptions.list(PageSize=20)