Instant Access • 0.01 USDC per QR

Professional QR Code
Generation API

Generate high-quality QR codes instantly. Flexible options, multiple formats, seamless integration. Perfect for apps, websites, and automation workflows.

100ms
Response Time
99.9%
Uptime
$0.01
Per QR Code

Powerful Features

Everything you need for professional QR code generation

Lightning Fast

Generate QR codes in under 100ms with optimized algorithms and edge deployment.

🎨

Customizable

Custom colors, sizes, error correction levels, and margins for your brand identity.

📱

Multiple Formats

Export as Data URL (base64) or PNG image. Perfect for web, mobile, and print.

🔒

Reliable

99.9% uptime guarantee with automatic failover and edge caching.

💰

Pay Per Use

Only 0.01 USDC per QR code. No subscriptions, no commitments, no waste.

🔗

Easy Integration

RESTful API with simple JSON requests. Works with any programming language.

Simple Pricing

Pay only for what you use. No subscriptions.

Most Popular

Pay Per Use

$0.01 per QR code
  • ✓ Unlimited QR codes
  • ✓ All features included
  • ✓ Custom colors & sizes
  • ✓ Multiple export formats
  • ✓ API access
  • ✓ 99.9% uptime SLA

Try It Live

Generate a QR code right now

QR code will appear here

API Documentation

Simple RESTful API for QR code generation

Generate QR Code

POST
/generate

Request Body

{
  "text": "https://example.com",
  "options": {
    "width": 300,
    "margin": 2,
    "errorCorrectionLevel": "M",
    "darkColor": "#000000",
    "lightColor": "#FFFFFF"
  }
}

Response

{
  "success": true,
  "data": "data:image/png;base64,...",
  "metadata": {
    "text": "https://example.com",
    "options": {...}
  }
}

Generate QR as Image

POST
/generate/image

Returns PNG image directly. Same request body as /generate.

Example Usage

curl -X POST https://aiagenttools.cloud/generate \
  -H "Content-Type: application/json" \
  -d '{
    "text": "https://example.com",
    "options": {"width": 300}
  }'