---
title: "List Voices for LLM Model"
method: GET
path: "/api/v1/available-voice-ids/{llm_model_id}/voices"
tags: ["ModelService"]
---

# List Voices for LLM Model

`GET /api/v1/available-voice-ids/{llm_model_id}/voices`

List available voices for a specific LLM model.

## Path parameters

- `llm_model_id` string, uuid, required

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

Voices fetched successfully

- ListVoicesForLLMModelResponse
  - `success` boolean
  - `message` string
  - `data` LLMModelVoice[]
    - `id` string, uuid — Unique voice ID
    - `llm_model_id` string, uuid — ID of the LLM model this voice belongs to
    - `real_voice_id` string — Provider-specific voice identifier
    - `voice_name` string — Display name of the voice
    - `real_voice_name` string — Provider-specific voice name
    - `gender` string — Voice gender label
    - `language` string — Voice language code
    - `recording_url` string, uri — URL for a sample recording
    - `img_url` string, uri — URL for the voice image
  - `meta` object
    - `total` integer
    - `limit` integer
    - `offset` integer

---

[API](https://skmtc.net/ravan/apis/agni-api.md) · [All operations](https://skmtc.net/ravan/apis/agni-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ravan/agni-api/revisions/48f45dc58534/schema)
