Quickstart
Get up and running with the QRCodeKIT API in just a few steps. This guide will help you create your first QR code quickly.
Step 1: Set Up Authentication
Choose your preferred authentication method:
API Key (Recommended)
Generate an API key from your dashboard for server-to-server communication
JWT Token
Use JWT tokens for web applications and user-based authentication
Step 2: Understand QR Code Types
Learn about the 10 different types of QR codes you can create:
QR Code Types
Explore Website, Business Card, File, Menu, and other QR code types
Step 3: Create Your First QR Code
Start with a simple Website QR code:
Website QR Guide
Create QR codes that redirect to websites
Quick Example
Here's a minimal example to create a Website QR code:
# 1. Create a Website QR code
curl -X POST 'https://api.v2.qrcodekit.com/api/qrs' \
-H 'X-Api-Key: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"typology": "/api/qr-typologies/0598466c-025c-11ef-83ba-06c4e69992ab",
"input": {
"url": "https://example.com"
},
"title": "My First QR Code"
}'X-Api-Key don't need the X-Account-Id header. That header is only required with JWT tokens, where one user can belong to several workspaces.Next Steps
Once you've created your first QR code, explore these features:
Manage QR Codes via API
Retrieve, list, update and delete your QR codes with your API key
Organize with Projects
Group your QR codes into projects for better organization
Advanced Features
Add password protection and visit limits to your QR codes
Bulk Operations
Create and manage multiple QR codes at once
Analytics
Track QR code performance and user engagement
Need Help?
- API Reference: Explore all available endpoints
- Authentication Guide: Detailed authentication instructions
- Error Handling: Learn how to handle common errors
- Support: Contact our support team for assistance

