---
title: "Get Supported Llm Configs"
method: GET
path: "/api/v1/prompts/llms/supported"
tags: ["prompts"]
---

# Get Supported Llm Configs

`GET /api/v1/prompts/llms/supported`

Get supported LLM configs.

Each config's `status` is resolved against the current date. Retired models are omitted unless
they match `selected_model`, so a saved config still referencing a retired model can render it
as a locked field.

## Query parameters

- `selected_model` string, nullable

## Response `200`

Successful Response

- SupportedLlm[]
  - `provider` 'anthropic' | 'azure_openai' | 'google' | 'openai' — LLM API provider.
  - `model` string — Name of the model. Must match the deployment name in Azure AI Studio.
  - `display_name` string, required — Display name of the model. This is used for display purposes in the Console UI.
  - `version` string, nullable — Deprecated model version retained for backward compatibility.
  - `api_version` string, nullable — Version of the provider's API.
  - `deprecated` boolean, required — Whether the model is in the deprecation warning window.
  - `sunset_date` string, date, nullable — Date the model becomes retired and can no longer be saved or selected.
  - `removed` boolean — Whether the model is force-retired regardless of sunset_date.
  - `fallback` string, nullable — Model substituted at runtime for critical features once this one is retired.
  - `status` 'active' | 'deprecated' | 'retired' — Effective deprecation state of a model, resolved against a reference date.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/asksyllable/apis/syllablesdk.md) · [All operations](https://skmtc.net/asksyllable/apis/syllablesdk/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/asksyllable/syllablesdk/revisions/f829ded48985/schema)
