v1

latestOpenAPI 3.0.02026-07-141,4077,1665.2 MB
LLM Observability

List LLM integration models

Retrieve the list of models available for the specified LLM provider integration and account.

get/api/v2/llm-obs/v1/integrations/{integration}/{account_id}/models

Path parameters

integration'openai' | 'amazon_bedrock' | 'anthropic' | 'azure_openai' | 'vertex_ai' | 'llmproxy' required

The name of a supported LLM provider integration.

Example:openai

The name of the LLM integration.

account_idstring required

The ID of the integration account.

Response

OK

has_accessboolean required

Whether the account has access to this model.

idstring required

Unique identifier for the model entry.

integrationstring required

The name of the LLM provider integration.

integration_display_namestring required

Human-readable name of the LLM provider integration.

json_schemaboolean required

Whether the model supports structured output via JSON schema.

model_display_namestring required

Human-readable model name.

model_idstring required

Provider-specific model identifier used in inference calls.

providerstring required

The underlying model provider.

provider_display_namestring required

Human-readable name of the underlying model provider.

region_prefix_overridesLLMObsIntegrationModelRegionPrefixOverrides

Map of region-specific model ID prefix overrides.

Example response

[
  {
    "has_access": true,
    "id": "gpt-4o",
    "integration": "openai",
    "integration_display_name": "OpenAI",
    "json_schema": true,
    "model_display_name": "GPT-4o",
    "model_id": "gpt-4o",
    "provider": "openai",
    "provider_display_name": "OpenAI",
    "region_prefix_overrides": {
      "us-east-1": "us."
    }
  }
]