> ## Documentation Index
> Fetch the complete documentation index at: https://docs.useqrkit.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Generate, customize, and manage QR codes with the QRKit API

## Welcome to QRKit

The QRKit API lets you programmatically create, manage, and track QR codes. Build dynamic QR codes with custom designs, organize them into folders, and track scans — all through a simple REST API.

### What you can do

<CardGroup cols={2}>
  <Card title="Generate QR Codes" icon="qrcode" href="/api-reference/qr-codes/create">
    Dynamic codes for URLs and vCards; static codes for WiFi, email, SMS, text and calendar events.
  </Card>

  <Card title="Custom Designs" icon="palette" href="/api-reference/qr-codes/create">
    Customize colors, shapes, gradients, and add your logo to every QR code.
  </Card>

  <Card title="Scan Analytics" icon="chart-line" href="/api-reference/qr-codes/analytics">
    Totals, daily series, and breakdowns by country, device, OS and browser.
  </Card>

  <Card title="Organize with Folders" icon="folder" href="/api-reference/folders/create">
    Group QR codes into folders to keep your workspace organized.
  </Card>

  <Card title="Batch Creation" icon="layer-group" href="/api-reference/batches/create">
    Create up to 1,000 QR codes in a single request.
  </Card>

  <Card title="Dashboard Parity" icon="table-columns" href="https://useqrkit.com/dashboard/qr-codes">
    Everything created via the API shows up in your QRKit dashboard, and vice-versa.
  </Card>
</CardGroup>

### Base URL

All API requests are made to:

```
https://api.useqrkit.com/v1
```

### Authentication

Every request requires a Bearer token. You can create API keys from the [QRKit dashboard](https://useqrkit.com/dashboard/api-keys) on any paid plan.

```bash theme={null}
curl https://api.useqrkit.com/v1/qr-codes \
  -H "Authorization: Bearer qr_live_..."
```

### Quick links

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/quickstart">
    Create your first QR code in 5 minutes.
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/overview">
    Explore all endpoints with the interactive playground.
  </Card>
</CardGroup>
