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

# Abrufen

> GET /qrcode/{qrid}/

Ruft einen einzelnen QR-Code auf dem **Management-API**-Host (`management.scanova.io`) ab, aktualisiert oder löscht ihn, authentifiziert mit Ihrem rohen Management-API-Schlüssel.

```
GET    https://management.scanova.io/qrcode/{qrid}/
PUT    https://management.scanova.io/qrcode/{qrid}/
PATCH  https://management.scanova.io/qrcode/{qrid}/
DELETE https://management.scanova.io/qrcode/{qrid}/
Authorization: 401f7ac837da42b97f613d789819ff93537bee6a
```

<ParamField path="qrid" type="string" required>
  Die `qrid` des QR-Codes (z. B. `QR7K9M2XN`) — der von [`GET /qr/`](/de/api-reference/management-api/qr/list) zurückgegebene, für Menschen lesbare Bezeichner, nicht die numerische `id`.
</ParamField>

<Tip>
  Dieselbe View ist auch unter `/qr/{qrid}/` erreichbar (also unter demselben Pfadpräfix wie der Listen-/Erstellungs-Endpunkt) — beide Pfade führen zu derselben View und demselben Verhalten. Diese Referenz dokumentiert `/qrcode/{qrid}/`, da dieser Pfad für dieses Doc-Set verifiziert wurde, aber beide funktionieren.
</Tip>

`GET` gibt die vollständige Detailform zurück — jedes Feld, das der Erstellungs-/Aktualisierungs-Serializer akzeptiert, plus berechnete Felder, jedoch ohne KI-Assistent-Felder (`ai_qr_code`, `ai_session_id`, `ai_chat_history`) und datenbankübergreifende Antwortzahl-Felder, die der Listen-Endpunkt ebenfalls weglässt.

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "id": 88231,
    "qrid": "QR7K9M2XN",
    "name": "Product launch flyer",
    "qr_type": "dy",
    "qr_type_display": "Dynamic",
    "category": { "id": 1, "name": "Website URL", "slug": "url" },
    "info": "{\"type\":\"url\",\"data\":{\"url\":\"https://example.com\"}}",
    "pattern_info": null,
    "dynamic_url_object": {
      "url_hash": "a1b2c3",
      "complete_url": "https://qr.link/a1b2c3",
      "visit_count": 1042
    },
    "thumbnail": "https://cdn.scanova.io/thumbnails/QR7K9M2XN.png",
    "is_active": true,
    "folder": null,
    "created": "2026-06-02T14:03:11Z",
    "modified": "2026-08-10T08:41:02Z",
    "tags_list": ["campaign-2026", "print"],
    "is_password_protected": false,
    "published_at": "2026-06-02T14:05:00Z",
    "is_currently_draft": false
  }
  ```
</ResponseExample>

## Geltungsbereich und Fehler

Jede Methode hier wirkt nur auf QR-Codes, die dem Konto gehören, zu dem der Schlüssel gehört — das Anfordern einer `qrid`, die Ihnen nicht gehört (oder die nicht existiert), gibt `404` zurück, nicht `403`, sodass Sie diesen Endpunkt nicht verwenden können, um die Existenz von QR-Codes anderer Konten zu erkunden.

## Verwandte Themen

* [Aktualisieren](/de/api-reference/management-api/qr/update) — die andere Operation an diesem selben Endpunkt.
* [Löschen](/de/api-reference/management-api/qr/delete) — die andere Operation an diesem selben Endpunkt.
* [QR-Codes auflisten](/de/api-reference/management-api/qr/list) — finden Sie eine `qrid`, die Sie hier abrufen möchten.
* [Einen QR-Code erstellen](/de/api-reference/management-api/qr/create) — das Erstellen eines QR-Codes gibt dieselbe vollständige Detailform zurück.
* [Ein QR-Code-Bild herunterladen](/de/api-reference/management-api/qr/download) — rendern Sie diesen QR-Code als Bilddatei.
* [Gelöschte QR-Codes auflisten](/de/api-reference/management-api/qr/trash) — wohin ein QR-Code nach `DELETE` hier gelangt.


## OpenAPI

````yaml api-reference/openapi/management-api.json GET /qrcode/{qrid}/
openapi: 3.1.0
info:
  title: Scanova Management API (v2)
  description: >-
    The complete Scanova Management API — every endpoint available at
    management.scanova.io (QR codes, folders, tags, leads, forms, analytics,
    plans, shared users & roles), plus the token-creation and usage-stats
    endpoints used to authenticate against it. Every path and request/response
    shape below was verified live against a real API key and the actual running
    backend (Phase 7, 2026-08-16) — not guessed from reading urls.py alone.
  version: 2.0.0
servers:
  - url: https://management.scanova.io
    description: Management API — QR/folder/tag/lead/form/analytics/plans endpoints
security:
  - apiKeyAuth: []
paths:
  /qrcode/{qrid}/:
    get:
      summary: Retrieve a QR code
      operationId: getManagedQrCode
      parameters:
        - name: qrid
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: QR code detail
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        Send your Management API key as the raw value of the Authorization
        header — no "Bearer " or "Token " prefix, and no other characters.
        Example: `Authorization: 401f7ac837da42b97f613d789819ff93537bee6a`. A
        header containing more than one space-separated part is rejected
        outright. Requests also require the request's Host header to be the
        management API host (e.g. management.scanova.io) — the same key sent to
        the regular API host will not authenticate.

````