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

# Get Voice Gallery



## OpenAPI

````yaml https://api.voice-agents.miraiminds.co/swagger.yaml get /v1/admin/voice-gallery
openapi: 3.0.3
info:
  title: Voice Agent by Mirai Minds
  version: 1.1.0
  contact:
    name: API Architecture Team
    url: https://miraiminds.co
  license:
    name: Mirai Minds Proprietary License
    url: >-
      https://github.com/MiraiMinds/voice-agent-integration-specs/blob/main/LICENSE.md
servers:
  - url: https://api.voice-agents.miraiminds.co
    description: Production Server
  - url: https://api.stage.voice-agent.miraiminds.co
    description: Staging Server
  - url: http://localhost:3000
    description: Local Server
security:
  - PublicKeyAuth: []
    PrivateKeyAuth: []
paths:
  /v1/admin/voice-gallery:
    get:
      tags:
        - Voice Gallery
      summary: Get Voice Gallery
      operationId: getVoiceGallery
      responses:
        '200':
          description: Voice Gallery fetched successfully
        '401':
          description: Unauthorized - missing or invalid API keys
          content:
            application/json:
              schema:
                type: object
                properties:
                  status_code:
                    type: integer
                    example: 200
                  message:
                    type: string
                    example: Voices fetched successfully.
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/VoiceGalleryItem'
      security:
        - PublicKeyAuth: []
        - PrivateKeyAuth: []
components:
  schemas:
    VoiceGalleryItem:
      type: object
      properties:
        _id:
          type: string
          description: Unique identifier for the voice gallery item.
        slug:
          type: string
          description: Slug for the voice (e.g., 'sagar').
        sampleAudio:
          type: string
          description: URL of the sample audio file.
  securitySchemes:
    PublicKeyAuth:
      type: apiKey
      in: header
      name: x-public-key
    PrivateKeyAuth:
      type: apiKey
      in: header
      name: x-private-key

````