echoecho
Back to app
IntroductionGetting startedREST APIWidget

Overview

Introduction

Setup

Getting started

Reference

REST APIWidget
PreviousIntroductionNextREST API
DocsSetupGetting started

Getting started

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!"}'
  1. 1. Create a project

    Sign up and create your first project from the dashboard. A project maps to one app or product you want to collect feedback for.

  2. 2. Generate API keys

    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.

  3. 3. Send your first feedback

    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!"}'
  4. 4. Install the widget

    Prefer collecting feedback directly from your UI? See the Widget page to install a floating feedback button in minutes.