Send feedback with one API call
Your app, site, or CLI sends a single POST /feedback with
the message and any context. That's the whole integration — no SDK, no
schema.
- One
POST /feedbackendpoint - Attach arbitrary context with every submission
curl -X POST https://a.feedstick.app/feedback \
-H "X-Feedstick-Key: pk_live_…" \
-H "Content-Type: application/json" \
-d '{
"content": "Add CSV export",
"type": "feature",
"context": { "page": "/settings" }
}'
# → 201 { "id": "…" }