# ScanBlitz > QR codes and analytics built for AI agents. ScanBlitz lets agents create trackable QR codes, manage campaigns, and pull scan analytics via a REST API or MCP server. One API key, no OAuth. ## Quick Start ### MCP Server (recommended for Claude Code, Cursor, etc.) ```json { "mcpServers": { "scanblitz": { "command": "npx", "args": ["-y", "@scanblitz/mcp-server"], "env": { "SCANBLITZ_API_KEY": "sb_api_..." } } } } ``` ### REST API ```bash curl -X POST https://scanblitz.com/api/enterprise/qr-codes \ -H "Authorization: Bearer sb_api_..." \ -H "Content-Type: application/json" \ -d '{"name": "My QR Code", "destination_url": "https://example.com"}' ``` ## Get an API Key Agents can self-register without a browser: ```bash # Step 1: Request verification code curl -X POST https://kylpeyhiqtdonlqqguty.supabase.co/functions/v1/agent-register \ -H "Content-Type: application/json" \ -d '{"email": "agent@example.com", "agent_name": "My Agent"}' # Step 2: Verify with code from email curl -X POST https://kylpeyhiqtdonlqqguty.supabase.co/functions/v1/agent-register/verify \ -H "Content-Type: application/json" \ -d '{"email": "agent@example.com", "code": "123456"}' # → Returns: { "api_key": "sb_api_...", "account": {...}, "limits": {...} } ``` Or sign up at https://scanblitz.com/auth ## Pricing | Tier | Price | QR Codes | Scans/mo | API Calls/mo | |------|-------|----------|----------|--------------| | Free | $0 | 50 | 1,000 | 5,000 | | Pro | $19/mo | 1,000 | 50,000 | 100,000 | | Scale | $49/mo | Unlimited | 500,000 | 1,000,000 | ## Links - API Docs: https://scanblitz.com/api-docs - Full API Reference: https://scanblitz.com/llms-full.txt - MCP Server: https://www.npmjs.com/package/@scanblitz/mcp-server - Pricing: https://scanblitz.com/pricing