AI-powered support
Ask me anything about SettleGrid
Integrate QR Code Generator API into your Mastra agent with SettleGrid's per-call billing. No subscriptions, no minimums — pay only for what you use.
A REST API service for generating QR codes from text or data input. Returns QR code images in various formats.
Mastra is a TypeScript-first framework for building AI agents and workflows. It provides type-safe tool definitions and composable agent pipelines.
npm install mastraPurchase credits for QR Code Generator API, then generate an API key from your Consumer Dashboard.
import { Agent, createTool } from "mastra";
import { z } from "zod";
// Define the tool with Zod schema
const qr_code_generator_api_0gapTool = createTool({
id: "qr_code_generator_api_0gap",
description: "QRCodeGeneratorAPI — call via SettleGrid",
inputSchema: z.object({
query: z.string().describe("Input query"),
}),
execute: async ({ context }) => {
const resp = await fetch(
"https://proxy.settlegrid.ai/v1/qr_code_generator_api_0gap",
{
method: "POST",
headers: {
"x-api-key": "sg_live_your_key_here",
"Content-Type": "application/json",
},
body: JSON.stringify({ query: context.query }),
}
);
if (!resp.ok) throw new Error(`QRCodeGeneratorAPI failed: ${resp.status}`);
return resp.json();
},
});
// Create an agent with the tool
const agent = new Agent({
name: "qr_code_generator_api_0gap-agent",
instructions: "Use QRCodeGeneratorAPI to accomplish the task.",
model: { provider: "OPEN_AI", name: "gpt-4o" },
tools: { qr_code_generator_api_0gap: qr_code_generator_api_0gapTool },
});
const result = await agent.generate("Use QRCodeGeneratorAPI for this input");Execute your Mastra agent. SettleGrid automatically meters each call to QR Code Generator API and deducts from your credit balance. No rate limits beyond your purchased credits.
No subscriptions or minimums. Credits never expire. See full pricing details.
Purchase credits and start using QR Code Generator API in your Mastra agent today.
View QR Code Generator API →Use QR Code Generator API with other agent frameworks: