Now in public beta

Centralize feedback from
all your SaaS apps

Echoes is a unified feedback hub for developers managing multiple products. Collect, categorize, prioritize, and track every user feedback from a single dashboard.

Everything you need

A simple yet powerful platform to manage feedback across all your projects.

Simple API

Integrate in minutes with our REST API. Just send feedback with a single POST request.

Multi-project

Manage feedback from all your SaaS apps in one unified dashboard.

Real-time

See feedback as it arrives. No delays, no refreshing needed.

Works with your stack

Dead simple integration

Add feedback collection to your app in under 5 minutes.
One API call. Any language. Any framework.

1// app/api/feedback/route.ts
2import { NextResponse } from 'next/server'
3
4export async function POST(request: Request) {
5 const body = await request.json()
6
7 const response = await fetch('https://echoes.sh/api/v1/feedback', {
8 method: 'POST',
9 headers: {
10 'x-api-key': process.env.ECHOES_API_KEY!,
11 'Content-Type': 'application/json'
12 },
13 body: JSON.stringify({
14 category: body.category,
15 message: body.message,
16 userIdentifier: body.email
17 })
18 })
19
20 return NextResponse.json(await response.json())
21}

Ready to get started?

Create your free account and start collecting feedback in minutes.