Available Models
All models accessible through a single OpenAI-compatible endpoint. Pricing is per 1M tokens (USD). Data is sourced live from the model catalog — automatically reflects current offerings and pricing.
List Models API
You can retrieve the model list programmatically:
GET /v1/models Authorization: Bearer sk-bc-YOUR_API_KEY
Or without authentication for public pricing pages:
GET /api/v1/gateway/models/public
| Model ID | Display Name | Input / 1M tokens | Output / 1M tokens | Context | Description |
|---|---|---|---|---|---|
| gemini-3.5-flash | Gemini 3.5 Flash | $1.50 | $9.00 | 1,048,576 | Google's balanced multimodal model. |
| gemini-3.5-flash-lite | Gemini 3.5 Flash Lite | $0.30 | $2.50 | 1,048,576 | Fast, low-cost Google model for high-volume workloads. |
Moonshot
| Model ID | Display Name | Input / 1M tokens | Output / 1M tokens | Context | Description |
|---|---|---|---|---|---|
| kimi-3 | Kimi K3 | $0.60 | $2.50 | 262,144 | Moonshot's Kimi K3 reasoning model. |
OpenAI
| Model ID | Display Name | Input / 1M tokens | Output / 1M tokens | Context | Description |
|---|---|---|---|---|---|
| gpt-oss-120b | GPT OSS 120B | $0.35 | $1.40 | 131,072 | OpenAI's open-weight 120B model. |
| gpt-oss-20b | GPT OSS 20B | $0.10 | $0.40 | 131,072 | OpenAI's open-weight 20B model — fast and cheap. |
MiniMax
| Model ID | Display Name | Input / 1M tokens | Output / 1M tokens | Context | Description |
|---|---|---|---|---|---|
| minimax-m3 | MiniMax M3 | $0.30 | $1.20 | 1,000,000 | MiniMax M3 general-purpose model. |
Zhipu
| Model ID | Display Name | Input / 1M tokens | Output / 1M tokens | Context | Description |
|---|---|---|---|---|---|
| glm-5.2 | GLM 5.2 | $0.30 | $1.20 | 131,072 | Zhipu GLM 5.2 multilingual model. |
Model Aliases
Instead of specifying a model directly, you can use smart aliases:
| Alias | Behaviour |
|---|---|
| auto | Routes to the highest-priority available model on your plan (availability-first) |
| auto-cheap | Routes to the cheapest eligible model with available capacity (cost-first) |
Bring Your Own Keys (BYOK)
If you need models not in the catalog, or want to use your own provider API keys, you can register Managed API Keys (BYOK) from the API Keys dashboard. Requests through Managed Keys are routed directly to your provider at your cost — billed at $0 by BroadComms, with full usage analytics.
Automatic Failover
The gateway routes each request across one or more inference providers for availability and cost optimisation. If a provider returns a 5xx error or times out, the request is automatically retried with a fallback provider. This happens transparently — you receive a successful response from the fallback with no changes required to your code.