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/providersResponse (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
| Field | Type | Description |
|---|---|---|
providers | array | List of active providers |
providers[].name | string | Internal provider identifier |
providers[].display_name | string | Human-readable name |
providers[].base_url | string | Upstream API base URL |
providers[].markup_pct | number | Markup percentage applied to costs |