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.

Requesty logoRequesty

Access 17 Requesty models through Mastra's model router. Authentication is handled automatically using the REQUESTY_API_KEY environment variable.

Learn more in the Requesty documentation.

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

const agent = new Agent({
name: "my-agent",
instructions: "You are a helpful assistant",
model: "requesty/anthropic/claude-3-7-sonnet"
});

// 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 Requesty documentation for details.

ModelsDirect link to Models

ModelContextToolsReasoningImageAudioVideoInput $/1MOutput $/1M
requesty/anthropic/claude-3-7-sonnet200K$3$15
requesty/anthropic/claude-haiku-4-5200K$1$5
requesty/anthropic/claude-opus-4200K$15$75
requesty/anthropic/claude-opus-4-1200K$15$75
requesty/anthropic/claude-sonnet-4200K$3$15
requesty/anthropic/claude-sonnet-4-51.0M$3$15
requesty/google/gemini-2.5-flash1.0M$0.30$3
requesty/google/gemini-2.5-pro1.0M$1$10
requesty/openai/gpt-4.11.0M$2$8
requesty/openai/gpt-4.1-mini1.0M$0.40$2
requesty/openai/gpt-4o-mini128K$0.15$0.60
requesty/openai/gpt-5400K$1$10
requesty/openai/gpt-5-mini128K$0.25$2
requesty/openai/gpt-5-nano16K$0.05$0.40
requesty/openai/o4-mini200K$1$4
requesty/xai/grok-4256K$3$15
requesty/xai/grok-4-fast2.0M$0.20$0.50
17 available models

Advanced ConfigurationDirect link to Advanced Configuration

Custom HeadersDirect link to Custom Headers

const agent = new Agent({
name: "custom-agent",
model: {
url: "https://router.requesty.ai/v1",
id: "requesty/anthropic/claude-3-7-sonnet",
apiKey: process.env.REQUESTY_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
? "requesty/xai/grok-4-fast"
: "requesty/anthropic/claude-3-7-sonnet";
}
});

On this page