> ## Documentation Index
> Fetch the complete documentation index at: https://developers.meshapi.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Transcription Translate

> Transcribe audio and translate it to English.

**Legacy alias** for `POST /v1/audio/translations` — prefer that
OpenAI-standard path. Behaviour is identical; retained so existing callers
keep working.



## OpenAPI

````yaml /api/openapi.json post /v1/audio/transcriptions/translate
openapi: 3.1.0
info:
  title: MeshAPI
  description: One key, all AI models.
  version: 0.1.0
servers:
  - url: https://api.meshapi.ai
security:
  - BearerAuth: []
paths:
  /v1/audio/transcriptions/translate:
    post:
      tags:
        - Audio
      summary: Create Transcription Translate
      description: >-
        Transcribe audio and translate it to English.


        **Legacy alias** for `POST /v1/audio/translations` — prefer that

        OpenAI-standard path. Behaviour is identical; retained so existing
        callers

        keep working.
      operationId: create_transcription_translate
      parameters:
        - in: header
          name: X-Mesh-Version
          required: false
          schema:
            type: string
            enum:
              - 2026-08
            default: 2026-08
          example: 2026-08
          description: >-
            Dated version of the API contract to pin this request to. Omit it
            and the request is served under `2026-08` — the oldest supported
            version, so an existing integration is never moved by a release. A
            malformed or unsupported value is rejected with `400
            invalid_api_version` rather than falling back silently. The version
            actually served is echoed as `X-Mesh-Version` on every response,
            including errors.
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/Body_create_transcription_translate'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TranscriptionResponse'
              examples:
                default:
                  summary: Example response
                  value:
                    text: We will meet tomorrow morning.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - BearerAuth: []
components:
  schemas:
    Body_create_transcription_translate:
      properties:
        model:
          type: string
          title: Model
          default: sarvam/saaras:v2
        file:
          type: string
          contentMediaType: application/octet-stream
          title: File
        prompt:
          anyOf:
            - type: string
            - type: 'null'
          title: Prompt
      type: object
      required:
        - file
      title: Body_create_transcription_translate
    TranscriptionResponse:
      properties:
        text:
          type: string
          title: Text
      type: object
      required:
        - text
      title: TranscriptionResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        Enter your MeshAPI key (`rsk_...`) — sent as `Authorization: Bearer
        <key>`.

````