DeepSeek
deepseek-v4-pro
DeepSeek V4 Pro
Flagship ReasoningDeepSeek next-gen MoE reasoning flagship for complex architectural design, autonomous coding loops, and math proofs.
- Context
- 256K
- Max Output
- 64K
- Public Pricing
- $0.56 / $1.11
Cached: $0.111
Run DeepSeek-V4, Qwen 3.7, GLM-5.3, Kimi K3, Doubao Seedance 2.0, and Kling-v3 via 100% OpenAI-compatible endpoints with cryptographic proof.
DeepSeek
deepseek-v4-pro
DeepSeek next-gen MoE reasoning flagship for complex architectural design, autonomous coding loops, and math proofs.
Cached: $0.111
DeepSeek
deepseek-v4-flash
High-throughput, ultra-low latency DeepSeek model optimized for rapid tool calls and high-frequency agent loops.
Cached: $0.020
Qwen
qwen3.7-max
Alibaba flagship reasoning model with native 1M context window and state-of-the-art benchmark capabilities.
Cached: $0.100
Qwen
qwen3.7-plus
Balanced workhorse model with 1M context, robust tool use, and enterprise-grade reliability.
Cached: $0.074
Qwen
qwen3-coder-480b-a35b
Large-scale 480B MoE code generation model tailored for whole-repo refactoring and complex bug fixing.
Cached: $0.111
Qwen
qwen3-coder-30b-a3b
Fast code completion model designed for IDE inline suggestions and interactive debugging.
Cached: $0.030
Qwen
qwen3-embedding-8b
Dense semantic vector embedding model with high retrieval accuracy for enterprise RAG and semantic search.
Zhipu AI
glm-5.3
Zhipu AI flagship model with upgraded reasoning, deep tool invocation capabilities, and Chinese enterprise alignment.
Cached: $0.149
Kimi / Moonshot AI
kimi-k3
Moonshot AI flagship with ultra-long 2M lossless context, multi-document cross-referencing, and deep research synthesis.
Cached: $0.371
Kimi / Moonshot AI
kimi-k2.7-code
Specialized coding intelligence model from Moonshot AI with deep understanding of complex frameworks and full-stack tasks.
Cached: $0.120
MiniMax
minimax-m3
MiniMax flagship language and multimodal reasoning engine with native 512K context and expressive text generation.
Cached: $0.080
ByteDance
doubao-seedance-2.0
ByteDance flagship video generation model offering photorealistic cinematic camera movement and motion coherence.
ByteDance
doubao-seedance-2-0-260128
Accelerated Seedance 2.0 video generation engine with high rendering speed and crisp visual consistency.
ByteDance
doubao-seedance-2-0-mini-260615
Cost-optimized lightweight video generation endpoint tailored for social media clips and preview generations.
ByteDance
doubao-seedance-2-0-fast-260128
Low-latency video rendering endpoint with consistent motion dynamics for real-time video workflows.
ByteDance
doubao-seedance-1-5-pro-251215
Reliable 1.5 Pro video generation endpoint with extensive compatibility and high concurrency support.
Kling AI
kling-v3
Kuaishou Kling v3 video generation model featuring complex physics simulation and fluid real-world mechanics.
Kling AI
kling-v3-omni
Omni-modal video model synthesizing synchronized sound effects and motion pictures in one unified pass.
Kling AI
kling-video-o1
Reasoning-guided video generator ensuring narrative consistency and multi-shot continuity.
MiniMax
minimax-h3
MiniMax H3 video synthesis engine specializing in realistic character performance and natural facial expressions.
ByteDance
doubao-seedream-5-0-260128
ByteDance latest Seedream 5.0 high-resolution image synthesis engine with exceptional prompt fidelity and texture detail.
Qwen
qwen-image-3.0-pro
Alibaba Qwen Image 3.0 Pro model specialized in complex visual layout composition and text rendering.
Qwen
qwen-image-3.0
Standard high-speed Qwen Image 3.0 generation model for general creative illustrations and web graphics.
100% compatible with OpenAI API specs. Drop straight into Next.js, LangChain, Cursor IDE, and LlamaIndex.
import { createOpenAI } from '@ai-sdk/openai';
import { streamText } from 'ai';
// Drop-in replace baseURL & apiKey
const batchin = createOpenAI({
baseURL: 'https://api.batchin.tech/v1',
apiKey: process.env.BATCHIN_API_KEY,
});
export async function POST(req: Request) {
const { messages } = await req.json();
const result = streamText({
model: batchin('deepseek-v4-pro'),
messages,
});
return result.toDataStreamResponse();
}