Skip to main content
GET
https://app.nicecall.ai/api/
/
user
/
assistants
/
models
Get available models
curl --request GET \
  --url https://app.nicecall.ai/api/user/assistants/models \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 1,
    "name": "GPT-4o-mini"
  },
  {
    "id": 2,
    "name": "GPT-4.1-mini"
  }
]
This endpoint returns a list of available AI models that can be used when creating or updating assistants.

Query Parameters

type
string
default:"llm"
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

data
array
[
  {
    "id": 1,
    "name": "GPT-4o-mini"
  },
  {
    "id": 2,
    "name": "GPT-4.1-mini"
  }
]

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