POST /feedback is the only endpoint that writes without a key — it backs the forms on these pages. Reading requires a key.
/feedbackSubmissions received, newest first. Requires authentication.
| Name | Type | Meaning |
|---|---|---|
feature | string, in query optional | — |
kind | string, in query optional | — |
status | string, in query optional | — |
limit | integer, in query optional · default 50 | — |
curl "$API/feedback" \ -H "X-API-Key: $KEY"
/feedbackno keySubmit feedback or a question about a feature.
Always answers 202 as long as the format is valid — including when the submission is discarded as automated. A bot should not learn what gave it away, and a human gets the same friendly confirmation either way.
No parameters.
FeedbackIn| Name | Type | Meaning |
|---|---|---|
feature | string required | Feature-Kennung, z. B. 'fundamentaldaten' |
kind | string optional · default feedback | Kind |
message | string required | Message |
email | string optional | optional, nur fuer Rueckfragen |
page | string optional | URL, von der abgeschickt wurde |
lang | string optional | Lang |
website | string optional | Website |
curl -X POST "$API/feedback" \
-H "Content-Type: application/json" \
-d '{ "feature": "fundamentaldaten", "kind": "question",
"message": "Gilt die Datumskorrektur auch für Quartale?" }'HTTP/1.1 202 Accepted
{ "accepted": true }/feedback/statsSubmissions per feature and type — for prioritisation.
No parameters.
curl "$API/feedback/stats" \ -H "X-API-Key: $KEY"