> ## 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.

# Formulare auflisten

> GET /forms/

Formulare sind Scanovas aktueller Builder für Lead-Erfassung und Datensammlung — umfangreicher als die veraltete Funktion [Lead-Listen](/de/api-reference/management-api/leads/list) und der empfohlene Weg, um Besucherdaten aus einem QR-Scan zu erfassen. Listen Sie sie hier auf oder erstellen Sie neue.

<Note>
  Erfordert einen Management-API-Schlüssel mit `MANAGEMENT_API`- (oder `MANAGEMENT_API_SANDBOX`-)Quota, gesendet als roher `Authorization`-Header-Wert — siehe die [Management-API-Übersicht](/de/api-reference/management-api/overview).
</Note>

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://management.scanova.io/forms/' \
    --header 'Authorization: YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "count": 2,
    "next": null,
    "previous": null,
    "results": [
      {
        "id": 375,
        "form_id": "F7e1b1ad8f8d040e9",
        "name": "docs-v2-contact-form",
        "created_by": "Docs",
        "created": "2026-08-16T20:33:41.950697+05:30",
        "form_url": "https://new.scnv.io/form/F7e1b1ad8f8d040e9",
        "is_active": true,
        "usage_count": 1,
        "linked_qrs": [
          {
            "qr_code__id": 9021,
            "qr_code__qrid": "Q07afe81aa0034c01",
            "qr_code__name": "docs-v2-first-qr-code",
            "qr_code__qr_type": "dy",
            "qr_code__is_active": true,
            "qr_code__published_at": "2026-08-16T15:03:11.884000+05:30",
            "qr_code__category__slug": "url",
            "dynamic_url_object__short_url": "https://new.scnv.io/s/AbC123",
            "qr_code__is_currently_draft": false
          }
        ],
        "entries_count": 3,
        "conversion": 12.5,
        "modified": "2026-08-16T20:33:41.950697+05:30"
      },
      {
        "id": 374,
        "form_id": "F1a2b3c4d5e6f7g8h",
        "name": "Event RSVP",
        "created_by": "Docs",
        "created": "2026-08-01T09:15:02.001000+05:30",
        "form_url": "https://new.scnv.io/form/F1a2b3c4d5e6f7g8h",
        "is_active": true,
        "usage_count": 0,
        "linked_qrs": [],
        "entries_count": 0,
        "conversion": null,
        "modified": "2026-08-01T09:15:02.001000+05:30"
      }
    ]
  }
  ```
</ResponseExample>

`count`, `results[0]` spiegeln hier eine echte, verifizierte Antwort gegen ein Test-Konto mit zwei Formularen wider.

<ParamField query="is_active" type="boolean">
  Filtert auf aktive oder inaktive Formulare.
</ParamField>

<ParamField query="created_from" type="string">
  Inklusive Untergrenze (`YYYY-MM-DD`) für `created`.
</ParamField>

<ParamField query="created_till" type="string">
  Inklusive Obergrenze (`YYYY-MM-DD`) für `created`.
</ParamField>

<ParamField query="search" type="string">
  Teilstring-Abgleich gegen den Formularnamen.
</ParamField>

<ParamField query="ordering" type="string">
  `created` oder `name`, jeweils mit vorangestelltem `-` für absteigende Sortierung.
</ParamField>

### Antwortfelder (pro Eintrag)

<ResponseField name="id" type="integer" />

<ResponseField name="form_id" type="string">
  Stabiler Formular-Bezeichner, verwendet in der öffentlichen Formular-URL und als Pfadparameter beim Abruf-/Aktualisierungs-/Löschungs-Endpunkt.
</ResponseField>

<ResponseField name="name" type="string" />

<ResponseField name="created_by" type="string | null">
  Anzeigename der Person, die das Formular erstellt hat.
</ResponseField>

<ResponseField name="form_url" type="string">
  Öffentliche URL, unter der das Formular gerendert wird.
</ResponseField>

<ResponseField name="is_active" type="boolean" />

<ResponseField name="usage_count" type="integer">
  Anzahl der QR-Codes, mit denen dieses Formular derzeit verknüpft ist.
</ResponseField>

<ResponseField name="linked_qrs" type="array">
  Mit diesem Formular verknüpfte QR-Codes, jeweils mit den `qr_code__*`-Feldern des verknüpften QR-Codes und dessen aufgelöster Kurz-URL.
</ResponseField>

<ResponseField name="entries_count" type="integer | null">
  Gesamtzahl der erhaltenen Einsendungen. `null`, wenn nicht berechenbar (z. B. war der datenbankübergreifende Tracking-Speicher nicht erreichbar).
</ResponseField>

<ResponseField name="conversion" type="number | null">
  Prozentsatz der Scans über verknüpfte QR-Codes, die zu einer Einsendung führten. `null`, wenn es noch keine Scans gab.
</ResponseField>

<ResponseField name="created" type="string" />

<ResponseField name="modified" type="string" />

## Verwandte Themen

* [Ein Formular erstellen](/de/api-reference/management-api/forms/create) — die andere Operation an diesem selben Endpunkt.
* [Verwaltung von Lead-Listen](/de/api-reference/management-api/leads/list) — die veraltete Lead-Erfassungsfunktion, die Formulare ablösen.
* [QR-Codes auflisten / erstellen](/de/api-reference/management-api/qr/list) — finden Sie die `qrid`, die Sie beim Erstellen eines Formulars als `qr_id` übergeben.
* [Management-API-Übersicht](/de/api-reference/management-api/overview) — das Auth-Schema und die Quota-Architektur, zu der dieser Endpunkt gehört.


## OpenAPI

````yaml api-reference/openapi/management-api.json GET /forms/
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:
  /forms/:
    get:
      summary: List forms
      operationId: listManagedForms
      responses:
        '200':
          description: List of forms
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.

````