Skip to main content

Requesty logoRequesty

Access 13 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.

Models

ModelContextToolsReasoningImageAudioVideoInput $/1MOutput $/1M
requesty/anthropic/claude-3-7-sonnet200K$3$15
requesty/anthropic/claude-4-sonnet-20250522200K$3$15
requesty/anthropic/claude-opus-4200K$15$75
requesty/anthropic/claude-opus-4-1-20250805200K$15$75
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
13 available models

Advanced Configuration

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 Selection

const agent = new Agent({
name: "dynamic-agent",
model: ({ runtimeContext }) => {
const useAdvanced = runtimeContext.task === "complex";
return useAdvanced
? "requesty/openai/o4-mini"
: "requesty/anthropic/claude-3-7-sonnet";
}
});

On this page