Generate QR codes programmatically with our simple API
Generate QR codes in milliseconds with our serverless API
API key authentication with credit-based usage tracking
Track scan events and user engagement
Generate a free QR code instantly without an API key.
POST https://api.qrpilot.org/generate
{
"apiKey": "your_api_key",
"urls": ["https://example.com", "https://example2.com"],
"sendEmail": true
}
// Response
{
"success": true,
"qrCodes": [
{ "url": "https://example.com", "shortCode": "a1b2c3d4", "qrCode": "data:image/png;base64,..." },
{ "url": "https://example2.com", "shortCode": "e5f6g7h8", "qrCode": "data:image/png;base64,..." }
]
}
// One credit is deducted per URL.
// sendEmail: true sends all QR codes in a single email.