curl --request GET \
--url 'https://api.scanova.io/forms/F8a9b0c1d2e3f4g5h/analytics/questions/?from=2026-08-01&to=2026-08-31' \
--header 'Authorization: YOUR_API_KEY'
[
{ "question": "Name", "type": "shortAnswer", "answered": 38, "response_rate": 100.0 },
{
"question": "Where would you like to sit?",
"type": "multipleChoice",
"answered": 30,
"response_rate": 78.9,
"distribution": [
{ "label": "Terrace", "count": 21 },
{ "label": "Inside", "count": 9 },
{ "label": "Bar", "count": 0 }
]
},
{
"question": "How was your last visit?",
"type": "starRating",
"answered": 25,
"response_rate": 65.8,
"distribution": [
{ "label": "5", "count": 14 },
{ "label": "4", "count": 8 },
{ "label": "3", "count": 3 }
]
}
]
Leads & Formulare
Formularanalysen pro Frage abrufen
GET /forms//analytics/questions/
GET
/
forms
/
{form_id}
/
analytics
/
questions
/
curl --request GET \
--url 'https://api.scanova.io/forms/F8a9b0c1d2e3f4g5h/analytics/questions/?from=2026-08-01&to=2026-08-31' \
--header 'Authorization: YOUR_API_KEY'
[
{ "question": "Name", "type": "shortAnswer", "answered": 38, "response_rate": 100.0 },
{
"question": "Where would you like to sit?",
"type": "multipleChoice",
"answered": 30,
"response_rate": 78.9,
"distribution": [
{ "label": "Terrace", "count": 21 },
{ "label": "Inside", "count": 9 },
{ "label": "Bar", "count": 0 }
]
},
{
"question": "How was your last visit?",
"type": "starRating",
"answered": 25,
"response_rate": 65.8,
"distribution": [
{ "label": "5", "count": 14 },
{ "label": "4", "count": 8 },
{ "label": "3", "count": 3 }
]
}
]
Gibt zurück, wie jede Frage eines Formulars beantwortet wurde, in der Fragenreihenfolge des Formulars: wie viele Antworten sie beantwortet haben, welchem Anteil der Antworten das entspricht und — bei Auswahl-, Bewertungs- und Skalenfragen — wie oft jede Antwortmöglichkeit gewählt wurde.
Erfordert einen Management-API-Schlüssel mit
MANAGEMENT_API- (oder MANAGEMENT_API_SANDBOX-)Quota und die Berechtigung LEAD_GENERATION_ANALYTICS_CAN_VIEW, gesendet als roher Authorization-Header-Wert — siehe die Übersicht über die Management API.string
erforderlich
Die
form_id des Formulars.string
Nur Antworten ab diesem Datum (einschließlich) zählen (
YYYY-MM-DD).string
Nur Antworten bis zu diesem Datum (einschließlich) zählen (
YYYY-MM-DD).string
Nur Antworten zählen, die über diesen QR-Code eingereicht wurden (seine
qrid).curl --request GET \
--url 'https://api.scanova.io/forms/F8a9b0c1d2e3f4g5h/analytics/questions/?from=2026-08-01&to=2026-08-31' \
--header 'Authorization: YOUR_API_KEY'
[
{ "question": "Name", "type": "shortAnswer", "answered": 38, "response_rate": 100.0 },
{
"question": "Where would you like to sit?",
"type": "multipleChoice",
"answered": 30,
"response_rate": 78.9,
"distribution": [
{ "label": "Terrace", "count": 21 },
{ "label": "Inside", "count": 9 },
{ "label": "Bar", "count": 0 }
]
},
{
"question": "How was your last visit?",
"type": "starRating",
"answered": 25,
"response_rate": 65.8,
"distribution": [
{ "label": "5", "count": 14 },
{ "label": "4", "count": 8 },
{ "label": "3", "count": 3 }
]
}
]
response_rateistansweredals Prozentsatz der Antworten des Formulars im Zeitraum, auf eine Nachkommastelle gerundet. Übersprungene Einreichungen sind keine Antworten und werden nicht mitgezählt.distributionerscheint nur bei Auswahlfragen (multipleChoice,checkbox,dropdown), Bewertungen (starRating,emoji,likeDislike) und Skalen (linearScale,number). Bei Auswahlfragen wird jede Option aufgeführt, auch solche, die niemand gewählt hat, die am häufigsten gewählte zuerst. Einecheckbox-Antwort zählt einmal für jede angekreuzte Option.- Reine Anzeige-Inhaltsblöcke sind keine Fragen und erscheinen nicht.
Verwandte Themen
- Formularanalysen abrufen — Antwort- und Überspringungssummen im Zeitverlauf sowie Antworten nach Quelle.
- Formularantworten auflisten — die einzelnen Einreichungen hinter diesen Zahlen.
- Übersicht über die Management API — das Authentifizierungsschema und die Quota-Architektur, zu der dieser Endpunkt gehört.
Autorisierungen
Send your Management API key as the raw value of the Authorization header — no "Bearer " or "Token " prefix, and no other characters. Example: Authorization: YOUR_API_KEY. 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. api.scanova.io) — the same key sent to the regular API host will not authenticate.
Pfadparameter
The form's form_id.
Abfrageparameter
Only responses on or after this date (YYYY-MM-DD).
Only responses on or before this date (YYYY-MM-DD).
Only responses submitted through this QR Code (qrid).
War diese Seite hilfreich?