Skip to main content
GET
/
settings
/
llm
/
available-providers
List Available Providers
curl --request GET \
  --url https://api.example.com/settings/llm/available-providers
[
  {
    "slug": "<string>",
    "label": "<string>",
    "connected": true,
    "is_platform_default": false,
    "tiers_available": [
      "fast"
    ]
  }
]

Response

200 - application/json

Successful Response

slug
string
required
label
string
required
connected
boolean
required
is_platform_default
boolean
default:false
tiers_available
enum<string>[]

Classification of a catalog model's capability tier.

Tier labels a model in the LLM catalog so the API can pick an appropriate concrete model for a requested PerformanceProfile. Tier and PerformanceProfile share the same string values but are semantically distinct: tier describes the model, profile describes the user's selection.

Available options:
fast,
balanced,
reasoning