Skip to main content
GET
/
v3
/
llm-gateway
/
providers
/
options
Get available provider options
curl --request GET \
  --url https://{host}/v3/llm-gateway/providers/options \
  --header 'Authorization: Bearer <token>'
{
  "api": "v3",
  "data": [
    {
      "provider": "openai",
      "display_name": "OpenAI",
      "credential_types": [
        "api_key"
      ],
      "models": [
        "gpt-5",
        "gpt-4",
        "gpt-4o-mini",
        "gpt-3.5-turbo"
      ]
    },
    {
      "provider": "anthropic",
      "display_name": "Anthropic",
      "credential_types": [
        "api_key"
      ],
      "models": [
        "sonnet-3.7",
        "haiku-3",
        "opus-3"
      ]
    },
    {
      "provider": "vertex_ai",
      "display_name": "Vertex AI",
      "credential_types": [
        "gcp_service_account"
      ],
      "models": [
        "gemini-2.5-pro",
        "gemini-2.5-flash"
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://handbook.fiddler.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Response

Available provider options

Response object for standard API responses.

api_version
enum<string>
default:3.0

API version.

Available options:
2.0,
3.0
kind
enum<string>
default:NORMAL

Type of response, indicating a normal response.

Available options:
NORMAL
data
object[]

Available models for each supported provider