Skip to main content
Mastra v1 is coming in January 2026. Get ahead by starting new projects with the beta or upgrade your existing project today.

OpenCode Zen logoOpenCode Zen

Access 21 OpenCode Zen models through Mastra's model router. Authentication is handled automatically using the OPENCODE_API_KEY environment variable.

Learn more in the OpenCode Zen documentation.

OPENCODE_API_KEY=your-api-key
import { Agent } from "@mastra/core";

const agent = new Agent({
name: "my-agent",
instructions: "You are a helpful assistant",
model: "opencode/alpha-doubao-seed-code"
});

// Generate a response
const response = await agent.generate("Hello!");

// Stream a response
const stream = await agent.stream("Tell me a story");
for await (const chunk of stream) {
console.log(chunk);
}
info

Mastra uses the OpenAI-compatible /chat/completions endpoint. Some provider-specific features may not be available. Check the OpenCode Zen documentation for details.

ModelsDirect link to Models

ModelContextToolsReasoningImageAudioVideoInput $/1MOutput $/1M
opencode/alpha-doubao-seed-code256K
opencode/alpha-gd4200K$0.50$2
opencode/alpha-minimax-m2205K$0.30$1
opencode/big-pickle200K
opencode/claude-3-5-haiku200K$0.80$4
opencode/claude-haiku-4-5200K$1$5
opencode/claude-opus-4-1200K$15$75
opencode/claude-opus-4-5200K$5$25
opencode/claude-sonnet-41.0M$3$15
opencode/claude-sonnet-4-51.0M$3$15
opencode/gemini-3-pro1.0M$2$12
opencode/glm-4.6205K$0.60$2
opencode/gpt-5400K$1$9
opencode/gpt-5-codex400K$1$9
opencode/gpt-5-nano400K
opencode/gpt-5.1400K$1$9
opencode/gpt-5.1-codex400K$1$9
opencode/grok-code256K
opencode/kimi-k2262K$0.45$3
opencode/kimi-k2-thinking262K$0.60$3
opencode/qwen3-coder262K$0.45$2
21 available models

Advanced ConfigurationDirect link to Advanced Configuration

Custom HeadersDirect link to Custom Headers

const agent = new Agent({
name: "custom-agent",
model: {
url: "https://opencode.ai/zen/v1",
id: "opencode/alpha-doubao-seed-code",
apiKey: process.env.OPENCODE_API_KEY,
headers: {
"X-Custom-Header": "value"
}
}
});

Dynamic Model SelectionDirect link to Dynamic Model Selection

const agent = new Agent({
name: "dynamic-agent",
model: ({ runtimeContext }) => {
const useAdvanced = runtimeContext.task === "complex";
return useAdvanced
? "opencode/qwen3-coder"
: "opencode/alpha-doubao-seed-code";
}
});

On this page