GET
/
api
/
bot-accounts
/
settings
/
models
Get Models
curl --request GET \
  --url https://api.example.com/api/bot-accounts/settings/models

Query Parameters

ParameterTypeRequiredDescription
providerstringYesLLM provider name

Response

{
  "models": [
    { "id": "gpt-4o", "name": "GPT-4o" },
    { "id": "gpt-4o-mini", "name": "GPT-4o Mini" }
  ]
}
Fetches the model list dynamically from the provider’s API.