> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# get

> Retrieve a single transcription by SID.

Retrieve a single transcription by SID.

### Schema

```yaml
openapi: 3.1.0
info:
  title: API
  version: 1.0.0
paths:
  /Accounts/{AccountSid}/Transcriptions/{Sid}:
    get:
      operationId: retrieve_transcription
      summary: Retrieve a Transcription
      description: >-
        Retrieve a single recording transcription.


        #### 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).
      tags:
        - subpackage_recordingTranscriptions
      parameters:
        - name: AccountSid
          in: path
          description: >-
            The unique identifier for the account that created this
            transcription.
          required: true
          schema:
            $ref: '#/components/schemas/uuid'
        - name: Sid
          in: path
          description: The unique identifier for the transcription.
          required: true
          schema:
            $ref: '#/components/schemas/uuid'
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TranscriptionResponse'
        '400':
          description: >-
            The request was invalid or cannot be processed. Check the error
            details for more information.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompatibilityErrorResponse'
        '401':
          description: Authentication failed. Please verify your credentials and try again.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompatibilityErrorResponse'
        '404':
          description: >-
            The requested resource was not found. Please verify the resource
            identifier.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompatibilityErrorResponse'
servers:
  - url: https://YOUR_SPACE.signalwire.com/api/laml/2010-04-01
    description: SignalWire Compatibility API
components:
  schemas:
    uuid:
      type: string
      format: uuid
      description: Universal Unique Identifier.
      title: uuid
    TranscriptionResponse:
      type: object
      properties:
        sid:
          $ref: '#/components/schemas/uuid'
          description: The unique identifier for the transcription.
        account_sid:
          $ref: '#/components/schemas/uuid'
          description: >-
            The unique identifier for the account that created this
            transcription.
        api_version:
          type: string
          description: The version of the SignalWire API.
        recording_sid:
          $ref: '#/components/schemas/uuid'
          description: >-
            The unique identifier for the recording that this transcription was
            created from.
        date_created:
          type: string
          description: The date, in RFC 2822 format, this transcription was created.
        date_updated:
          type: string
          description: The date, in RFC 2822 format, this transcription was updated.
        duration:
          type: integer
          description: The duration, in seconds, of the transcribed audio.
        price:
          type:
            - string
            - 'null'
          description: >-
            The charge for the transcription. Null if cost has not been
            calculated.
        price_unit:
          type: string
          description: >-
            The currency, in ISO 4217 format, for the price of the
            transcription.
        status:
          type: string
          description: >-
            The status of the transcription. Always 'completed' for
            transcriptions returned by the API.
        transcription_text:
          type:
            - string
            - 'null'
          description: >-
            The text content of the transcription. Null if transcription text is
            not available.
        type:
          type: string
          description: The type of the transcription. Currently always an empty string.
        uri:
          type: string
          description: The URI of this resource, relative to the API base URL.
      required:
        - sid
        - account_sid
        - api_version
        - recording_sid
        - date_created
        - date_updated
        - duration
        - price
        - price_unit
        - status
        - transcription_text
        - type
        - uri
      description: Response containing a single transcription.
      title: TranscriptionResponse
    CompatibilityErrorResponse:
      type: object
      properties:
        code:
          type: integer
          description: Error code.
        message:
          type: string
          description: Error message.
        more_info:
          type: string
          description: URL for more information about the error.
        status:
          type: integer
          description: HTTP status code.
      required:
        - code
        - message
        - more_info
        - status
      description: Error response model.
      title: CompatibilityErrorResponse

```

## **Response Example**

### Response (200)

```json
{
  "sid": "b3877c40-da60-4998-90ad-b792e98472tr",
  "account_sid": "b3877c40-da60-4998-90ad-b792e98472ac",
  "api_version": "2010-04-01",
  "recording_sid": "b3877c40-da60-4998-90ad-b792e98472re",
  "date_created": "Thu, 27 Sep 2018 02:00:00 +0000",
  "date_updated": "Fri, 28 Sep 2018 03:00:00 +0000",
  "duration": 60,
  "price": "-0.00025",
  "price_unit": "USD",
  "status": "completed",
  "transcription_text": "Hello, this is a test transcription.",
  "type": "",
  "uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472ac/Transcriptions/b3877c40-da60-4998-90ad-b792e98472tr.json"
}
```

## **Example**

```typescript {8}
import { RestClient } from "@signalwire/sdk";

const client = new RestClient({
  project: "your-project-id",
  token: "your-api-token",
  host: "your-space.signalwire.com"
});
const transcription = await client.compat.transcriptions.get("TR...");
```