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

# Get Voice

## Get Voice

Retrieve detailed information about a specific voice by ID.

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.example.com/api/v1/voices/21m00Tcm4TlvDq8ikWAM" \
    -H "X-API-Key: your-api-key-here"
  ```

  ```javascript JavaScript theme={null}
  const voiceId = '21m00Tcm4TlvDq8ikWAM';
  const response = await fetch(`https://api.example.com/api/v1/voices/${voiceId}`, {
    method: 'GET',
    headers: {
      'X-API-Key': 'your-api-key-here'
    }
  });

  const data = await response.json();
  ```

  ```python Python theme={null}
  import requests

  voice_id = '21m00Tcm4TlvDq8ikWAM'
  headers = {
      'X-API-Key': 'your-api-key-here'
  }

  response = requests.get(
      f'https://api.example.com/api/v1/voices/{voice_id}',
      headers=headers
  )

  data = response.json()
  ```
</RequestExample>

<ResponseExample>
  ```json Success Response theme={null}
  {
    "status": {
      "code": 200,
      "message": "Voice retrieved successfully"
    },
    "data": {
      "voice_id": "21m00Tcm4TlvDq8ikWAM",
      "name": "Rachel",
      "category": "premade",
      "description": "Calm and professional voice",
      "gender": "female",
      "accent": "american",
      "age": "young",
      "use_case": "narration"
    }
  }
  ```
</ResponseExample>

<OpenApiExplorer />
