Quickstart Guide

Create your workspace, generate your API credentials, and create your first dynamic QR code in minutes.

1

Set Up a Paid Workspace (Pro or Business)

Log in to your account and verify that your Workspace is on a paid plan (Pro or Business). REST API access, API key creation, and automated integrations are available on paid tiers.

2

Generate an API Key

Navigate to Workspace Settings → API Keys in the dashboard. Click "Create Key", select your desired scopes (e.g. qr:read, qr:write), and securely copy the generated qrs_live_... secret. Plaintext keys are displayed only once.

3

Make Your First API Request

Select language:
curl -X POST https://qrnaly.com/api/v1/qr   -H "Authorization: Bearer qrs_live_sample99x82..."   -H "Content-Type: application/json"   -d '{
    "name": "Summer Festival Billboard",
    "targetUrl": "https://example.com/summer-pass",
    "isDynamic": true,
    "design": {
      "fgColor": "#0f172a",
      "frameStyle": "bottom-bar",
      "frameText": "SCAN FOR 20% OFF PASS"
    }
  }'
Ready for more?Explore full endpoint schemas in the API Reference.
API Reference ➔