Skip to main content
GET
/
admin
/
provider-catalog
List the provider catalog
curl --request GET \
  --url https://{organization_id}.platform.barndoor.ai/api/llm-gateway/admin/provider-catalog \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "slug": "openai",
    "name": "OpenAI",
    "model_provider": "openai",
    "default_base_url": "<string>",
    "description": "<string>",
    "icon_url": "<string>",
    "docs_url": "<string>",
    "default_models": [
      "<string>"
    ],
    "wire_protocol": "openai",
    "auth_type": "api_key",
    "capabilities": {},
    "settings_schema": {},
    "credential_schema": {},
    "enabled": true,
    "sort_order": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

JWT obtained through Barndoor's authentication flow. Pass the token verbatim in Authorization: Bearer <token>. Use the Barndoor SDK's loginInteractive() helper to obtain a token in scripts and notebooks.

Response

200 - application/json

List of catalog entries

id
string<uuid>
required
slug
string
required
Example:

"openai"

name
string
required
Example:

"OpenAI"

model_provider
enum<string>
required

Slug of the upstream model provider this resource speaks to

Available options:
openai,
anthropic,
azure_openai,
google_ai,
bedrock,
vertex,
groq,
together,
mistral,
cohere,
xai,
fireworks,
perplexity,
openrouter,
deepseek,
custom
Example:

"openai"

default_base_url
string<uri>
required
description
string
icon_url
string<uri>
docs_url
string<uri>
default_models
string[]
wire_protocol
string
Example:

"openai"

auth_type
string

The authentication scheme this credential or provider uses to talk to the upstream model provider. Valid values depend on model_provider: for OpenAI/Anthropic-style vendors this is typically api_key; for AWS Bedrock it is one of aws_role, aws_keys, or bedrock_api_key; for Google Vertex it is google_adc, google_service_account, or google_impersonation; Anthropic OAuth passthrough uses oauth_passthrough.

Example:

"api_key"

capabilities
object
settings_schema
object
credential_schema
object
enabled
boolean
sort_order
integer
created_at
string<date-time>
updated_at
string<date-time>