Analytics Overview
Returns a high-level summary of your QR code analytics, including total QR codes created, total scans, and unique scans.
GET
/analytics/overviewHeaders
| Header | Required | Description |
|---|---|---|
X-API-Key | Required | Your API key |
QR-Version | Optional | API version (e.g., 2026-02-16) |
Request
- cURL
- JavaScript
- Python
curl -X GET "https://integration-api.qr-build.com/analytics/overview" \
-H "X-API-Key: qrb_live_your_api_key_here"
const response = await fetch(
"https://integration-api.qr-build.com/analytics/overview",
{ headers: { "X-API-Key": "qrb_live_your_api_key_here" } }
);
const data = await response.json();
import requests
response = requests.get(
"https://integration-api.qr-build.com/analytics/overview",
headers={"X-API-Key": "qrb_live_your_api_key_here"},
)
data = response.json()
Response
{
"object": "analytics",
"success": true,
"data": {
"total_qr_codes": 156,
"total_scans": 12847,
"unique_scans": 9432
}
}