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

# Get voices

> Retrieve available voices for `linkedin_voice_message` campaign steps.

Use this before creating `linkedin_voice_message` steps to discover valid `voiceId` values. Returns the built-in system voices plus any voices cloned from this client's identities.

    > **Required scope:** `IDENTITIES_READ`
    >
    > **Rate limit:** 100 requests per minute



## OpenAPI

````yaml https://openapi.enginy.ai/definitions.json get /v1/voices
openapi: 3.1.0
info:
  title: Enginy API
  version: 1.0.0
  description: Public API for Enginy platform
servers:
  - url: https://openapi.enginy.ai
    description: Configured server
security: []
tags:
  - name: AI Variables
    description: >-
      Manage AI variables and discover the entity fields you can reference in
      prompts and entity requests.
  - name: Inbox
    description: >-
      Inbox endpoints for listing contact threads, reading thread messages,
      managing tags, and sending manual replies.
  - name: Workflows
    description: >-
      Build, validate, publish, run, and inspect advanced (graph) workflows,
      plus the block/condition catalog needed to author a workflow plan.
paths:
  /v1/voices:
    get:
      tags:
        - Voices
      summary: Get voices
      description: >-
        Retrieve available voices for `linkedin_voice_message` campaign steps.


        Use this before creating `linkedin_voice_message` steps to discover
        valid `voiceId` values. Returns the built-in system voices plus any
        voices cloned from this client's identities.

            > **Required scope:** `IDENTITIES_READ`
            >
            > **Rate limit:** 100 requests per minute
      responses:
        '200':
          description: Voices retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - success
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      voices:
                        type: array
                        items:
                          type: object
                          properties:
                            voiceId:
                              type: string
                              description: >-
                                Voice ID to send back as `voiceId` on
                                `linkedin_voice_message` steps.
                            name:
                              type: string
                              description: Voice display name.
                            source:
                              type: string
                              enum:
                                - system
                                - identity
                              description: >-
                                `system` for the built-in ElevenLabs voices.
                                `identity` for a voice cloned from one of the
                                client’s identities.
                            identityId:
                              type: integer
                              exclusiveMinimum: 0
                              description: >-
                                Identity ID when `source` is `identity`. Omitted
                                for system voices.
                            identityName:
                              type: string
                              description: >-
                                Identity display name when `source` is
                                `identity`.
                            labels:
                              type: object
                              properties:
                                language:
                                  type: string
                                  description: Voice language label.
                                country:
                                  type: string
                                  description: Voice country label.
                                style:
                                  type: string
                                  description: Voice style label.
                                gender:
                                  type: string
                                  description: Voice gender label.
                              required:
                                - language
                                - country
                                - style
                                - gender
                              description: >-
                                Display labels for system voices. Omitted for
                                clones.
                          required:
                            - voiceId
                            - name
                            - source
                        description: Available voices for `linkedin_voice_message` steps.
                    required:
                      - voices
                required:
                  - status
                  - message
                  - data
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````