v1

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

List LLM integration accounts

Retrieve the list of configured accounts for the specified LLM provider integration.

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

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.

Response

OK

account_idstring required

Provider-specific account identifier.

account_namestring required

Human-readable name for the integration account.

account_regionstring

Provider region associated with the account, if applicable.

idstring required

Unique identifier for the integration account.

integrationstring required

The name of the LLM provider integration.

Example response

[
  {
    "account_id": "org-XYZ123",
    "account_name": "Production OpenAI",
    "account_region": "us-east-1",
    "azure_openai_metadata": {
      "deployment_id": "my-gpt4-deployment",
      "model_version": "0613",
      "resource_name": "my-azure-resource"
    },
    "id": "account-abc123",
    "integration": "openai",
    "vertex_ai_metadata": {
      "location": "us-central1",
      "project": "my-gcp-project",
      "project_ids": [
        "my-gcp-project"
      ]
    }
  }
]