Generate high-quality QR codes instantly. Flexible options, multiple formats, seamless integration. Perfect for apps, websites, and automation workflows.
Everything you need for professional QR code generation
Generate QR codes in under 100ms with optimized algorithms and edge deployment.
Custom colors, sizes, error correction levels, and margins for your brand identity.
Export as Data URL (base64) or PNG image. Perfect for web, mobile, and print.
99.9% uptime guarantee with automatic failover and edge caching.
Only 0.01 USDC per QR code. No subscriptions, no commitments, no waste.
RESTful API with simple JSON requests. Works with any programming language.
Pay only for what you use. No subscriptions.
Generate a QR code right now
QR code will appear here
Simple RESTful API for QR code generation
/generate
{
"text": "https://example.com",
"options": {
"width": 300,
"margin": 2,
"errorCorrectionLevel": "M",
"darkColor": "#000000",
"lightColor": "#FFFFFF"
}
}
{
"success": true,
"data": "data:image/png;base64,...",
"metadata": {
"text": "https://example.com",
"options": {...}
}
}
/generate/image
Returns PNG image directly. Same request body as /generate.
curl -X POST https://aiagenttools.cloud/generate \
-H "Content-Type: application/json" \
-d '{
"text": "https://example.com",
"options": {"width": 300}
}'