VoxLink.ai

API Reference

Get available models

Retrieve available AI models for assistant configuration

Updated 25 Jan 2026

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 mode
  • dualplex - Multimodal models for dualplex mode

Response fields

dataarray

idinteger

  The unique identifier of the model

namestring

  The display name of the model

codestring

  The internal code (only for multimodal/dualplex models)
[
  {
    "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 type parameter is provided, LLM models are returned by default
  • Use llm_model_id field when creating pipeline assistants
  • Use multimodal_model_id field when creating multimodal or dualplex assistants

Related guides