For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Log inSign up
Support
cXMLREST API
cXMLREST API
  • Core
    • Overview
    • Authorization
    • Error codes
    • Paging
    • REST client SDKs
  • Compatibility REST API
      • GETList all Transcriptions
      • GETRetrieve a Transcription
      • DELDelete a Recording Transcription
LogoLogoSignalWire Docs
Log inSign up
Support
Compatibility REST APIRecording Transcriptions

List all Transcriptions

|View as Markdown|Open in Claude|
GET
https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/:AccountSid/Transcriptions
GET
/api/laml/2010-04-01/Accounts/:AccountSid/Transcriptions
$curl https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/AccountSid/Transcriptions \
> -u "<project_id>:<api_token>"
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 "previous_page_uri": null,
6 "page": 0,
7 "page_size": 50,
8 "transcriptions": [
9 {
10 "sid": "b3877c40-da60-4998-90ad-b792e98472tr",
11 "account_sid": "b3877c40-da60-4998-90ad-b792e98472ac",
12 "api_version": "2010-04-01",
13 "recording_sid": "b3877c40-da60-4998-90ad-b792e98472re",
14 "date_created": "Thu, 27 Sep 2018 02:00:00 +0000",
15 "date_updated": "Fri, 28 Sep 2018 03:00:00 +0000",
16 "duration": 60,
17 "price": "-0.00025",
18 "price_unit": "USD",
19 "status": "completed",
20 "transcription_text": "Hello, this is a test transcription.",
21 "type": "",
22 "uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472ac/Transcriptions/b3877c40-da60-4998-90ad-b792e98472tr.json"
23 }
24 ]
25}
List all transcriptions. Results are returned as a paginated list ordered by creation date (newest first). #### Permissions The API token used to authenticate must have the following scope(s) enabled to make a successful request: _Voice_. [Learn more about API scopes](/docs/platform/your-signalwire-api-space).
Was this page helpful?
Previous

Retrieve a Transcription

Next
Built with

List all transcriptions. Results are returned as a paginated list ordered by creation date (newest first).

Permissions

The API token used to authenticate must have the following scope(s) enabled to make a successful request: Voice.

Learn more about API scopes.

Authentication

AuthorizationBasic
SignalWire Basic Authentication using Project ID and API Token. The client sends HTTP requests with the Authorization header containing the word Basic followed by a space and a base64-encoded string of project_id:token. The project ID will be used as the username and the API token as the password. Example: ``` Authorization: Basic base64(project_id:token) ```

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

The request has succeeded.
uristring
The URI of the current page.
first_page_uristring
The URI of the first page.
next_page_uristring or null
The URI of the next page. Null if there are no more pages.
previous_page_uristring or null
The URI of the previous page. Null if this is the first page.
pageinteger

The current page number (zero-indexed).

page_sizeinteger
The number of items per page.
transcriptionslist of objects
List of transcriptions.

Errors

400
Bad Request Error
401
Unauthorized Error
422
Unprocessable Entity Error

SignalWire Basic Authentication using Project ID and API Token.

The client sends HTTP requests with the Authorization header containing the word Basic followed by a space and a base64-encoded string of project_id:token. The project ID will be used as the username and the API token as the password.

Example:

Authorization: Basic base64(project_id:token)