Skip to main content
GET
List Llm Models
List available models for a specific LLM provider. Use the model_id value as the agent’s model_name field when creating or updating an agent.

Path Parameters

provider_identifier
string
required
The provider’s internal_identifier from List LLM Providers (e.g., openai, anthropic)

Response

Returns an array of LLMModelItem objects.
model_id
string
Model identifier — use this as the model_name field when creating/updating agents
display_name
string
Human-friendly model name
tier
integer
Model tier level (1 = standard, higher = premium)
description
string
Brief description of the model’s capabilities

Example Request

Notes

  • Returns 404 if the provider identifier is not found
  • Use the model_id value as the agent’s model_name field
  • Models are organized by tier — higher tiers indicate more capable (and more expensive) models

Authorizations

x-api-key
string
header
required

API Key for authentication

Path Parameters

provider_identifier
string
required

Response

Successful Response

model_id
string
required

The model identifier to use in agent configuration. Set this as the agent's model_name field (e.g., 'claude-sonnet-4-6', 'gpt-4o').

display_name
string | null

Human-readable name of the model for display purposes.

tier
integer | null
default:1

Model capability tier. Higher tiers indicate more capable (and typically more expensive) models. Tier 1 is standard, higher tiers are premium.

description
string | null

Brief description of the model's capabilities and recommended use cases.