QR Code API + Make
Generate QR codes in your Make scenarios using the HTTP module. Visual automation made simple.
Setup Steps
1. Add HTTP Module
In your scenario, add the "HTTP > Make a request" module.
2. Configure the Request
URL: https://qrcodeapi.io/api/generate
Method: GET
Query String:
- data: {{1.url}}
- size: 300
- format: png
Headers:
- Authorization: Bearer YOUR_API_KEY
3. Parse as Binary
Enable "Parse response" and select "Binary data" to get the image file.
Example Scenario: Airtable to QR Code
- Trigger: Airtable - Watch Records
- Action: HTTP - Make a request (QR Code API)
- Action: Google Drive - Upload a File
- Action: Airtable - Update a Record (add QR URL)
Dynamic URL Building
Use Make's built-in functions:
URL: https://qrcodeapi.io/api/generate?data={{encodeURL(1.productUrl)}}&size=400&color={{replace(1.brandColor; "#"; "")}}
Iterator for Batch Processing
Process multiple records:
1. Airtable - List Records
2. Iterator (process each record)
3. HTTP Request to QR Code API
4. Google Drive - Upload
5. Aggregator (collect results)