Four steps to your first piece of feedback.
curl -X POST https://api.echo.builders/api/feedback \
-H "Authorization: Bearer echo_sk_your_secret_key" \
-H "Content-Type: application/json" \
-d '{"name": "Jane Smith", "feedback": "Love the product!"}'Sign up and create your first project from the dashboard. A project maps to one app or product you want to collect feedback for.
From Collect API in the dashboard, generate a key pair: a secret key (echo_sk_…) for writing feedback, and a publishable key (echo_pk_…) for reading it.
Call the REST API with your secret key from any backend:
curl -X POST https://api.echo.builders/api/feedback \
-H "Authorization: Bearer echo_sk_your_secret_key" \
-H "Content-Type: application/json" \
-d '{"name": "Jane Smith", "feedback": "Love the product!"}'Prefer collecting feedback directly from your UI? See the Widget page to install a floating feedback button in minutes.