Models

Model Catalog

All models available through the BelugAPI gateway, dynamically generated from the live catalog. Filter by category or use the API endpoint below.

68
Large Language Models (LLM)
17
Image Generation
27
Video Generation
3
Speech (TTS & STT)

List models GET

GET https://api.belugapi.com/v1/models

Returns all models. Supports optional query parameters:

ParameterTypeDescription
category string optional — Filter: llm, image, video, speech
provider string optional — Filter by provider slug (e.g. openai, anthropic)
search string optional — Full-text search on model id, name, description
limit integer optional — Max results (default & max: 1000)
# List all models
curl "https://api.belugapi.com/v1/models"

# Filter by category
curl "https://api.belugapi.com/v1/models?category=llm"

# Search for a specific model
curl "https://api.belugapi.com/v1/models?search=gpt"
from openai import OpenAI

client = OpenAI(
    api_key="bapi_your_key_here",
    base_url="https://api.belugapi.com/v1"
)

models = client.models.list()
for m in models:
    print(m.id)

Get model GET

GET https://api.belugapi.com/v1/models/{model_id}
curl "https://api.belugapi.com/v1/models/gpt-5.4" \
  -H "Authorization: Bearer bapi_your_key_here"
model = client.models.retrieve("gpt-5.4")
print(model)

Large Language Models (LLM)

Model ID Name Provider Type Context Stream Endpoint
gpt-5.2-codex GPT-5.2 Codex OpenAI code /v1/chat/completions
gpt-5.2-pro GPT-5.2 Pro OpenAI chat /v1/chat/completions
gpt-5.2-chat-latest GPT-5.2 Chat Latest OpenAI chat /v1/chat/completions
gpt-5.2 GPT-5.2 OpenAI chat /v1/chat/completions
gpt-5.1-chat-latest GPT-5.1 Chat Latest OpenAI chat /v1/chat/completions
gpt-5.1 GPT-5.1 OpenAI chat /v1/chat/completions
gpt-5.1-2025-11-13 GPT-5.1 (2025-11-13) OpenAI chat /v1/chat/completions
gpt-5.1-codex GPT-5.1 Codex OpenAI code /v1/chat/completions
gpt-5.1-codex-mini GPT-5.1 Codex Mini OpenAI code /v1/chat/completions
gpt-5-pro-2025-10-06 GPT-5 Pro OpenAI chat /v1/chat/completions
gpt-5-2025-08-07 GPT-5 OpenAI chat /v1/chat/completions
gpt-5-mini-2025-08-07 GPT-5 Mini OpenAI chat /v1/chat/completions
gpt-5-nano-2025-08-07 GPT-5 Nano OpenAI chat /v1/chat/completions
gpt-5-search-api GPT-5 Search API OpenAI chat /v1/chat/completions
gpt-5-search-api-2025-10-14 GPT-5 Search API (2025-10-14) OpenAI chat /v1/chat/completions
gpt-4o-transcribe GPT-4o Transcribe OpenAI audio /v1/chat/completions
gpt-4o-mini-transcribe GPT-4o Mini Transcribe OpenAI audio /v1/chat/completions
gpt-4.1-mini-2025-04-14 GPT-4.1 Mini OpenAI chat /v1/chat/completions
gpt-4.1-nano-2025-04-14 GPT-4.1 Nano OpenAI chat /v1/chat/completions
gpt-4-1106-preview GPT-4 Turbo (1106 Preview) OpenAI chat 128 tok /v1/chat/completions
gpt-3.5-turbo-16k GPT-3.5 Turbo 16K OpenAI chat 16 tok /v1/chat/completions
o3-2025-04-16 o3 OpenAI reasoning /v1/chat/completions
o4-mini-2025-04-16 o4 Mini OpenAI reasoning /v1/chat/completions
o3-mini-2025-01-31 o3 Mini OpenAI reasoning /v1/chat/completions
o1-2024-12-17 o1 OpenAI reasoning /v1/chat/completions
o1-mini-2024-09-12 o1 Mini OpenAI reasoning /v1/chat/completions
claude-opus-4-7 Claude Opus 4.7 Anthropic chat 200 tok /v1/chat/completions
claude-opus-4-6 Claude Opus 4.6 Anthropic chat 200 tok /v1/chat/completions
claude-opus-4-6-thinking Claude Opus 4.6 Thinking Anthropic reasoning 200 tok /v1/chat/completions
claude-opus-4-5-20251101 Claude Opus 4.5 Anthropic chat 200 tok /v1/chat/completions
claude-opus-4-5-20251101-thinking Claude Opus 4.5 Thinking Anthropic reasoning 200 tok /v1/chat/completions
claude-sonnet-4-6 Claude Sonnet 4.6 Anthropic chat 200 tok /v1/chat/completions
claude-sonnet-4-6-thinking Claude Sonnet 4.6 Thinking Anthropic reasoning 200 tok /v1/chat/completions
claude-sonnet-4-5-20250929 Claude Sonnet 4.5 Anthropic chat 200 tok /v1/chat/completions
claude-sonnet-4-5-20250929-thinking Claude Sonnet 4.5 Thinking Anthropic reasoning 200 tok /v1/chat/completions
claude-haiku-4-5-20251001 Claude Haiku 4.5 Anthropic chat 200 tok /v1/chat/completions
claude-haiku-4-5-20251001-thinking Claude Haiku 4.5 Thinking Anthropic reasoning 200 tok /v1/chat/completions
claude-3-7-sonnet-20250219-thinking Claude 3.7 Sonnet Thinking Anthropic reasoning 200 tok /v1/chat/completions
gemini-3.1-pro-preview Gemini 3.1 Pro Preview Google chat 1 tok /v1/chat/completions
gemini-3-pro-preview Gemini 3 Pro Preview Google chat 1 tok /v1/chat/completions
gemini-3-pro-preview-thinking Gemini 3 Pro Preview Thinking Google reasoning 1 tok /v1/chat/completions
gemini-3-flash-preview Gemini 3 Flash Preview Google chat 1 tok /v1/chat/completions
gemini-3-flash-preview-nothinking Gemini 3 Flash Preview (No Thinking) Google chat 1 tok /v1/chat/completions
gemini-2.5-pro Gemini 2.5 Pro Google chat 1 tok /v1/chat/completions
gemini-2.5-pro-thinking Gemini 2.5 Pro Thinking Google reasoning 1 tok /v1/chat/completions
gemini-2.5-pro-nothinking Gemini 2.5 Pro (No Thinking) Google chat 1 tok /v1/chat/completions
gemini-2.5-flash Gemini 2.5 Flash Google chat 1 tok /v1/chat/completions
gemini-2.5-flash-thinking Gemini 2.5 Flash Thinking Google reasoning 1 tok /v1/chat/completions
gemini-2.5-flash-nothinking Gemini 2.5 Flash (No Thinking) Google chat 1 tok /v1/chat/completions
gemini-2.5-flash-lite Gemini 2.5 Flash Lite Google chat 1 tok /v1/chat/completions
gemini-2.0-flash Gemini 2.0 Flash Google chat 1 tok /v1/chat/completions
deepseek-v3.2 DeepSeek V3.2 DeepSeek chat 64 tok /v1/chat/completions
deepseek-v3.2-exp DeepSeek V3.2 Experimental DeepSeek chat 128 tok /v1/chat/completions
deepseek-v3.1-terminus DeepSeek V3.1 Terminus DeepSeek chat 64 tok /v1/chat/completions
deepseek-v3-0324 DeepSeek V3 DeepSeek chat 64 tok /v1/chat/completions
deepseek-r1-250528 DeepSeek R1 DeepSeek reasoning 64 tok /v1/chat/completions
deepseek-r1-0528 DeepSeek R1 (0528) DeepSeek reasoning 64 tok /v1/chat/completions
deepseek-ocr DeepSeek OCR DeepSeek vision 32 tok /v1/chat/completions
glm-5.1 GLM-5.1 Zhipu chat 128 tok /v1/chat/completions
glm-4.7 GLM-4.7 Zhipu chat 128 tok /v1/chat/completions
glm-4.6 GLM-4.6 Zhipu chat 128 tok /v1/chat/completions
minimax-m2.1 MiniMax M2.1 MiniMax chat 256 tok /v1/chat/completions
kimi-k2-instruct Kimi K2 Instruct Moonshot AI chat 256 tok /v1/chat/completions
kimi-k2-thinking Kimi K2 Thinking Moonshot AI reasoning 256 tok /v1/chat/completions
llama3.1-8b Meta Llama 3.1 8B BelugAPI chat /v1/chat/completions
gpt-oss-120b OpenAI GPT OSS 120B BelugAPI chat /v1/chat/completions
qwen-3-235b-a22b-instruct-2507 Qwen 3 235B Instruct BelugAPI chat /v1/chat/completions
zai-glm-4.7 Z.ai GLM 4.7 BelugAPI chat /v1/chat/completions

Image Generation

Model ID Name Provider Type Endpoint
gpt-image-2 GPT-Image-2 OpenAI text-to-image /v1/images/generations
gpt-image-2-official GPT-Image-2 (Official Channel) OpenAI text-to-image /v1/images/generations
gpt-image-1-official GPT-Image-1 OpenAI text-to-image /v1/images/generations
gpt-image-1.5-official GPT-Image-1.5 OpenAI text-to-image /v1/images/generations
gemini-3-pro-image-preview-official Gemini 3 Pro Image (Nano Banana Pro) Google text-to-image /v1/images/generations
gemini-2.5-flash-image-preview-official Gemini 2.5 Flash Image (Nano Banana) Google text-to-image /v1/images/generations
seedream-4.0 Seedream 4.0 ByteDance text-to-image /v1/images/generations
seedream-4.5 Seedream 4.5 ByteDance text-to-image /v1/images/generations
seedream-5.0-lite Seedream 5.0 Lite ByteDance text-to-image /v1/images/generations
wan2.7-image Wan 2.7 Image Various text-to-image /v1/images/generations
wan2.7-image-pro Wan 2.7 Image Pro Various text-to-image /v1/images/generations
qwen-image-2.0-pro Qwen Image 2.0 Pro Various text-to-image /v1/images/generations
z-image-turbo Z-Image-Turbo Various text-to-image /v1/images/generations
grok-imagine-1.0-apimart Grok Imagine 1.0 Various text-to-image /v1/images/generations
grok-imagine-1.0-edit-apimart Grok Imagine 1.0 Edit Various image-to-image /v1/images/generations
flux-kontext Flux Kontext Various text-to-image /v1/images/generations
flux-2.0 Flux 2.0 Various text-to-image /v1/images/generations

Video Generation

Model ID Name Provider Type Endpoint
sora-2-preview Sora 2 OpenAI text-to-video /v1/videos/generations
sora-2-vip Sora 2 Pro OpenAI text-to-video /v1/videos/generations
veo3.1-lite Veo 3.1 Lite Google text-to-video /v1/videos/generations
veo3.1-fast Veo 3.1 Fast Google text-to-video /v1/videos/generations
veo3.1-quality Veo 3.1 Quality Google text-to-video /v1/videos/generations
veo-3-1 Veo 3.1 Google text-to-video /v1/videos/generations
kling-v3 Kling V3 Kuaishou text-to-video /v1/videos/generations
kling-v3-omni Kling V3 Omni Kuaishou text-to-video /v1/videos/generations
kling-video-o1 Kling Video O1 Kuaishou text-to-video /v1/videos/generations
minimax-hailuo-2.3 MiniMax Hailuo 2.3 MiniMax text-to-video /v1/videos/generations
minimax-hailuo-2.3-fast MiniMax Hailuo 2.3 Fast MiniMax text-to-video /v1/videos/generations
viduq3-mix Vidu Q3 Mix Vidu text-to-video /v1/videos/generations
viduq3 Vidu Q3 Vidu text-to-video /v1/videos/generations
viduq3-turbo Vidu Q3 Turbo Vidu text-to-video /v1/videos/generations
viduq3-pro Vidu Q3 Pro Vidu text-to-video /v1/videos/generations
wan2.7 Wan 2.7 Alibaba text-to-video /v1/videos/generations
wan2.7-r2v Wan 2.7 R2V Alibaba reference-to-video /v1/videos/generations
wan2.7-videoedit Wan 2.7 Video Edit Alibaba video-to-video /v1/videos/generations
wan2.6-i2v Wan 2.6 I2V Alibaba image-to-video /v1/videos/generations
wan2.5-preview Wan 2.5 Alibaba text-to-video /v1/videos/generations
happyhorse-1.0 HappyHorse 1.0 Alibaba text-to-video /v1/videos/generations
skyreels-v4-fast SkyReels V4 Fast Skywork text-to-video /v1/videos/generations
skyreels-v4-std SkyReels V4 Standard Skywork text-to-video /v1/videos/generations
doubao-seedance-2.0 Seedance 2.0 ByteDance text-to-video /v1/videos/generations
doubao-seedance-2.0-fast Seedance 2.0 Fast ByteDance text-to-video /v1/videos/generations
doubao-seedance-2.0-face Seedance 2.0 Face ByteDance text-to-video /v1/videos/generations
doubao-seedance-2.0-fast-face Seedance 2.0 Fast Face ByteDance text-to-video /v1/videos/generations

Speech (TTS & STT)

Model ID Name Provider Type Endpoint
whisper-1 Whisper-1 OpenAI speech-to-text /v1/audio/transcriptions
tts-1 TTS-1 OpenAI text-to-speech /v1/audio/speech
tts-1-hd TTS-1 HD OpenAI text-to-speech /v1/audio/speech