Generate QR codes, WiFi QR, and barcodes with branding and logo support.
https://qr.soltryxsolutions.com
Public access available. API key support on request.
Generate QR codes with optional logo branding and high error correction.
Content-Type: application/x-www-form-urlencoded
| Parameter | Type | Required | Description |
|---|---|---|---|
| data | string | Yes | QR content (URL, WiFi, vCard, text) |
| logo | string (base64 / URL) | No |
Logo source:
|
curl -X POST https://qr.soltryxsolutions.com/api/generate-qr \
-d "data=https://site.com" --output qr.png
curl -X POST https://qr.soltryxsolutions.com/api/generate-qr \
-d "data=https://site.com" \
-d "logo=https://your-site.com/logo.png" \
--output qr.png
curl -X POST https://qr.soltryxsolutions.com/api/generate-qr \
-d "data=https://site.com&logo=$(base64 -w 0 logo.png)" \
--output qr.png
Generate WiFi QR codes that auto-connect on scan with optional branding.
| Parameter | Type | Required | Description |
|---|---|---|---|
| ssid | string | Yes | WiFi network name |
| password | string | Yes | WiFi password |
| security | string | No | WPA or nopass (default: WPA) |
| logo | file / base64 / URL | No | Optional branding logo (white square supported) |
curl -X POST https://qr.soltryxsolutions.com/api/generate-wifi-qr \
-F "ssid=MyWiFi" \
-F "password=Secret123" \
-F "security=WPA" \
-F "file=@logo.png" \
--output wifi.png
Generate Code128 barcodes from product codes or text.
| Parameter | Type | Required | Description |
|---|---|---|---|
| data | string | Yes | Content to encode |