A simple yet powerful platform to manage feedback across all your projects.
Integrate in minutes with our REST API. Just send feedback with a single POST request.
Manage feedback from all your SaaS apps in one unified dashboard.
See feedback as it arrives. No delays, no refreshing needed.
Add feedback collection to your app in under 5 minutes.
One API call. Any language. Any framework.
1// app/api/feedback/route.ts2import { 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.email17 })18 })19
20 return NextResponse.json(await response.json())21}