API Reference / Cognis - Preferences

List available AI models

get https://api.intelig.ai/api/v1/intelig/cognis/models

Auth: Authorization: ApiKey <key> (an API key sent as Bearer is rejected) or Authorization: Bearer <jwt> for a dashboard session. operationId: getAvailableModels

Returns all AI models available for selection across Anthropic (interactive) and Grok/Gemini/SambaNova/DeepSeek (batch). Each model includes provider, display name, tier requirement, and grouping information.

Example request

curl -X GET "https://api.intelig.ai/api/v1/intelig/cognis/models" \
  -H "Authorization: ApiKey $INTELIG_API_KEY"

Response 200

application/json · AiModelOptionDto[]

No body.

Status codes

  • 200 — Model list returned successfully
  • 401 — Not authenticated
  • 403 — Insufficient permissions for Cognis pillar
  • 429 — —

Every response is wrapped in { success, message, data }. A 4xx means the request is wrong — do not retry it unchanged. A 429 carries Retry-After in seconds.