QR Forge API

Utilities

Professional QR code generation with 6+ styles. Free tier with 100 requests per day — no credit card required.

6
Endpoints
100
Free Req/Day
0
Cost to Start
<200ms
Avg Latency
Get Free API Key Interactive Docs

Code Examples

cURL

curl -s "https://api.commandsector.in/api/qr/generate?data=https://example.com&api_key=demo-try-free-2026"

Python

import requests
resp = requests.get("https://api.commandsector.in/api/qr/generate",
    params={"data": "https://example.com", "style": "rounded", "api_key": "YOUR_KEY"})
with open("qr.png", "wb") as f:
    f.write(resp.content)

JavaScript

const resp = await fetch(
  "https://api.commandsector.in/api/qr/generate?data=https://example.com&style=dots&api_key=YOUR_KEY"
);
const blob = await resp.blob();
const url = URL.createObjectURL(blob);
document.getElementById("qr").src = url;

Use Cases

Restaurant menuspayment linksevent ticketsbusiness cardsWi-Fi sharingapp download links

Getting Started

  1. Get your free API key at /signup (instant, no credit card)
  2. Pass it as X-API-Key header or ?api_key=YOUR_KEY query parameter
  3. Make requests to /api/qr/ endpoints
  4. Check interactive Swagger docs for all 6 endpoints

Pricing

Free100 req/day$0/mo
Pro10,000 req/day$9.99/mo
EnterpriseUnlimited$49.99/mo

Frequently Asked Questions

Is the QR Code API free?
Yes. The free tier gives you 100 requests per day with no credit card required. Sign up takes 10 seconds.
What QR code styles are available?
Six styles: standard, rounded, dots, diamond, star, and heart. All with custom foreground/background colors.
Can I generate QR codes in bulk?
Yes. The batch endpoint generates up to 50 QR codes in a single request, returned as a ZIP file.

OpenAPI Specification

Machine-readable spec: /api/qr/openapi.json

Also available on: API Catalog · MCP Server · All Specs

Get Free API Key →