← Back to Dashboard

QR code

DevelopmentActiveFreeAuth: NoneDoc: HTML
Visit Website ↗

Description

Generate and decode / read QR code graphics

✨ AI Summary

Generate and decode QR code graphics using this API, which supports creating colored QR codes and professional print file formats.

Code Example

import requests

url = "https://api.qrserver.com/v1/create-qr-code/"
params = {
    "size": "150x150",
    "data": "Example",
    "bgcolor": "ffff00" # Example for colored QR code
}

response = requests.get(url, params=params)

# To save the QR code image:
# with open("qrcode.png", "wb") as f:
#     f.write(response.content)

print(f"QR Code URL: {response.url}")

Live Health Metrics

Last 50 checks (10 min intervals)