Integrate QR code generation into your applications
Simple HTTP endpoints with JSON responses
API key based authentication with OAuth 2.0 support
Up to 1000 requests per minute for Pro plans
Real-time notifications for scan events
Test your integration without affecting production
// Generate a QR code
const response = await fetch('https://api.corgiqr.com/v1/qr-codes/generate', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
type: 'url',
data: {
url: 'https://example.com',
title: 'My Website'
},
format: 'png',
size: 400
})
});
const qrCode = await response.json();
console.log(qrCode.imageUrl);Fill out this form to get your API credentials