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

# Get Available Voices

> Learn how to retrieve available voices.

The VoxVoice API allows you to fetch a list of all available voices that can be used for Text-to-Speech generation.

***

## Endpoint

### **GET `/api/v1/get_voices`**

Fetches all available voices.

#### **Headers**

```bash theme={null}
Authorization: Bearer {YOUR_API_KEY_HERE}
```

## Response

```json theme={null}
{
  "success": true,
  "voices": [
  {
    "name": "Kartik",
    "description": "Warm, steady, and confident male voice suitable for banking.",
    "languages": [
      "English",
      "Hindi"
    ],
    "gender": "male"
  }
]
}
```

* `success`: Boolean indicating request status
* `voices`: Array of voice objects

# Example — Fetch Voices (Node.js)

```javascript theme={null}
async function getVoices() {
  const res = await fetch("https://timepay.ai/api/v1/get_voices", {
    headers: {
      Authorization: "Bearer YOUR_API_KEY_HERE"
    }
  });

  const data = await res.json();
  console.log(data);
}

getVoices();
```

## Need Help?

If you have any questions or need assistance, please contact our support team at [support@timepay.ai](mailto:support@timepay.ai).
