Generate a styled QR code image (PNG or SVG) with 9 content types: URL, WhatsApp, phone, SMS, email, vCard, WiFi, geo, and plain text. Supports branded styling with custom colors, dot styles, and logo embedding.
cURL
curl --request POST \ --url https://api.rendobar.com/qr/generate \ --header 'Content-Type: application/json' \ --data ' { "inputs": {}, "params": { "content": { "type": "url", "url": "https://rendobar.com" }, "style": { "size": 512, "foregroundColor": "#6366F1", "dotStyle": "rounded" } } } '
{ "data": { "id": "<string>", "status": "complete", "url": "<string>" } }
No separate inputs required — media URLs are embedded in params
Show child attributes
QR code generated synchronously (complete)
Was this page helpful?