Generate QR codes via MCP, REST API, or any HTTP client. Inline base64 response — no upload, no file hosting, ready to use instantly.
From zero to QR codes in your agent in under 2 minutes. No credit card.
Free login with Google or Microsoft. Free plan with 500 req/month included. No credit card required.
Your key is auto-generated on first login. Displayed prominently — copy with one click, snippet ready.
Paste into Claude Desktop config, n8n HTTP node, or any client. Done — your agent generates QR codes.
Native MCP, REST API, or HTTP Request — the same API serves all clients.
// ~/.config/claude/claude_desktop_config.json { "mcpServers": { "qrrapido": { "command": "qrrapido-mcp", "env": { "QR_API_KEY": "qr_your_key_here" } } } } // Claude Desktop now has access to tools: // → generate_qr(type, content, format, color, size) // → list_qr_history() // → get_qr_analytics(trackingId)
# Generate a QR code via REST API curl -X POST https://qrrapido.site/api/v1/QRManager/generate \ -H "X-API-Key: qr_your_key_here" \ -H "Content-Type: application/json" \ -d '{ "type": "url", "content": "https://my-store.com/product/123", "outputFormat": "png", "size": 400 }' # Response: JSON with inline qrCodeBase64 # No upload. No CDN. Ready to use.
Use {{ $json.qrCodeBase64 }} in downstream nodes
to send via email, save to file, or return via webhook — no external URL needed.
Pass "type" in the payload and QR Rápido handles the correct format.
Links, products, landing pages
Brazilian instant payments
Wireless network credentials
Digital business cards
Pre-filled messages
Direct email composition
Pre-defined SMS text
Any free-form text content
QR code returned directly in the JSON. Your agent receives it, uses it, moves on — no external URL, no upload.
Base64 embedded in the response. Agents use it directly — no dependency on external URLs or CDN.
Identical QRs return from cache in milliseconds. fromCache: true signals a hit.
PNG, WebP (~40% smaller), or vector SVG. Choose per request via outputFormat.
{
"success": true,
"qrCodeBase64": "iVBORw0KGgoAAAANSUhEUgAA...",
"qrId": "6842a1f3b8c94d2e...",
"format": "png",
"mimeType": "image/png",
"generationTimeMs": 312,
"fromCache": false,
"remainingCredits": 487,
"message": "QR generated successfully"
}
No credit card to start. Upgrade anytime.
For testing and small projects
For automations and workflows
For agents and production products
For high volume and teams
Free login. Key auto-generated. Snippet ready to copy.
Create free account →