Skip to main content
GET
List Fallback LLMs
Read only Lists the language models that can serve as an agent’s fallback LLM. A fallback LLM takes over mid-call when the primary model is slow or unavailable, so the conversation keeps going instead of stalling.

When to use this

  • Configuring fallbacks: pick a model from this list, then enable it on the agent with fallback_llm_enabled, llm_fallback_model, and llm_fallback_delay_ms via Create Agent or Update Agent.
  • Validating configuration: confirm a previously configured fallback model is still offered before publishing an agent change.
Not every model in the main List LLMs catalog is eligible as a fallback; this endpoint returns only the eligible set. Choose a fallback from a different provider than the primary model so a provider-wide outage does not take out both. The API-key response contains id, name, and provider; it does not expose supports_tool_calling. Check tool compatibility in the dashboard or MCP catalog. The API validates the effective fallback model when the agent configuration is saved.

Result

The response is a plain JSON array of models, not a paginated envelope. Each entry includes the model’s id and display metadata; use the response schema on this page for the exact fields. See API errors for the standard error format.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
number
Example:

1

limit
number
Example:

20

sortBy
string
Example:

"id"

sortOrder
enum<string>
Available options:
ASC,
DESC

Response

Fallback LLM returned successfully.

id
string
required

Signed LLM ID

Example:

"llm_abc123"