---
title: "List LLM Models With Voices"
method: GET
path: "/api/v1/available-llm-models/with-voices"
tags: ["ModelService"]
---

# List LLM Models With Voices

`GET /api/v1/available-llm-models/with-voices`

List available LLM models with their voice IDs.

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

LLM models with voices fetched successfully

- ListLLMModelsWithVoicesResponse
  - `success` boolean
  - `message` string
  - `data` LLMModelWithVoices[]
    - `id` string, uuid — Unique model ID
    - `llm_model` string — Model identifier
    - `description` string — Human-readable model description
    - `price` number — Model price
    - `is_active` boolean — Whether the model is currently active
    - `voices` LLMVoice[] — Voices available for this model
      - `id` string, uuid — Unique voice ID
      - `llm_model_id` string, uuid — ID of the model this voice belongs to
      - `voice_name` string — Display name of the voice
      - `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)
