API Reference
Get available models
Retrieve available AI models for assistant configuration
Updated 25 Jan 2026
On this page
This endpoint returns a list of available AI models that can be used when creating or updating assistants.
Query Parameters
typestring
The type of models to retrieve based on engine mode:
llm- LLM models for pipeline mode (default)multimodal- Multimodal models for multimodal modedualplex- Multimodal models for dualplex mode
Response fields
dataarray
[
{
"id": 1,
"name": "GPT-4o-mini"
},
{
"id": 2,
"name": "GPT-4.1-mini"
}
]
[
{
"id": 1,
"name": "GPT-4o",
"code": "gpt-4o-realtime"
},
{
"id": 4,
"name": "GPT Realtime",
"code": "gpt-realtime"
}
]
Notes
- If no
typeparameter is provided, LLM models are returned by default - Use
llm_model_idfield when creating pipeline assistants - Use
multimodal_model_idfield when creating multimodal or dualplex assistants
Related guides
API Reference
Introduction
Welcome to the VoxLink API
Read guide →API Reference
Authentication
Learn how to authenticate your API requests
Read guide →API Reference
Get current user
Get the authenticated user's profile information
Read guide →API Reference
List assistants
List all assistants for the authenticated user with pagination
Read guide →