aibank
API ReferenceAgents

List Providers

List all active gateway providers with their display names and pricing.

List Providers

Returns all active providers that can be accessed through the gateway.

Authentication

No authentication required.

Request

curl http://localhost:4000/v1/providers

Response (200)

{
  "providers": [
    {
      "name": "anthropic",
      "display_name": "Anthropic",
      "base_url": "https://api.anthropic.com",
      "markup_pct": 0
    },
    {
      "name": "openai",
      "display_name": "OpenAI",
      "base_url": "https://api.openai.com",
      "markup_pct": 0
    },
    {
      "name": "deepseek",
      "display_name": "DeepSeek",
      "base_url": "https://api.deepseek.com",
      "markup_pct": 0
    }
  ]
}

Response fields

FieldTypeDescription
providersarrayList of active providers
providers[].namestringInternal provider identifier
providers[].display_namestringHuman-readable name
providers[].base_urlstringUpstream API base URL
providers[].markup_pctnumberMarkup percentage applied to costs

On this page