For developers
Bulk endpoint, dynamic QRs with scan analytics, custom logos, 600 DPI, 7 data types, SDK for Python & TypeScript. From $7/mo.
Sign up → grab API key → run this. Bytes come back.
curl -X POST https://api.qrstudio.agency/api/v1/generate/ \
-H "X-Api-Key: smk_..." \
-H "Content-Type: application/json" \
-d '{"data":"https://yourbrand.com","size_inches":4,"format":"png"}' \
--output qr.pngimport requests
r = requests.post(
"https://api.qrstudio.agency/api/v1/generate/",
headers={"X-Api-Key": "smk_..."},
json={"data": "https://yourbrand.com", "size_inches": 4},
)
with open("qr.png", "wb") as f:
f.write(r.content)const res = await fetch("https://api.qrstudio.agency/api/v1/generate/", {
method: "POST",
headers: { "X-Api-Key": "smk_...", "Content-Type": "application/json" },
body: JSON.stringify({ data: "https://yourbrand.com", size_inches: 4 }),
});
const buf = Buffer.from(await res.arrayBuffer());
await fs.writeFile("qr.png", buf);Response: image/png or image/svg+xml. No SDK lock-in. Full quickstart →
Most QR SaaS treat the API as an enterprise upsell. We don't.
| Vendor | Lowest tier with API | Bulk endpoint | Dynamic + analytics | Print DPI |
|---|---|---|---|---|
| QR Studioyou're here | ✓ Starter ($7) | ✓ Starter (50/batch) | ✓ Starter (10 codes) | ✓ 600 DPI |
| Bitly | Premium ($249) | Manual only | Growth ($35) | Limited |
| Uniqode | Plus ($416) | Starter ($39) | Lite ($15) | Standard |
| Scanova | Advanced ($208) | Standard ($50) | Lite ($25) | Standard |
| QR Tiger | Enterprise (custom) | Advanced ($40) | Starter ($7) | Standard |
Pricing as of April 2026. Verify on competitor sites before quoting.
POST /api/v1/generate/bulk/ takes an array, returns a ZIP + manifest.json. 50/batch on Starter, 5000 on Agency.
Encode a short URL you control. Edit destination at any time. Scan analytics with country, device, referer.
Up to 4500×4500 PNG (15″ at 300 DPI) or scalable SVG. Stickers, posters, billboards — actually scannable.
Logo gets a real clear-zone, not just plopped on top. Neon-alpha mode strips dark backings off neon brand assets.
URL, vCard, Wi-Fi join, mailto, SMS, geo, plain text. The API formats correctly so every scanner offers the right action.
Hashed SHA-256, plan per key, monthly quotas, audit log on every call. Production-grade auth.
When you outgrow it, $7/mo unlocks 500 generations + 10 dynamics + bulk + REST API.