Collect feedback from iframes or hosted pages on Free. Invite your team to the same dashboard on Team and Scale. API keys and webhooks when you upgrade.
Limits apply per workspace (tenant). Stripe checkout for paid tiers is coming soon — prices shown are targets.
Demo uses an API key when your project has been seeded with a Team (or Scale) workspace.
curl -X POST https://your-domain.com/api/feedback \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"type": "bug",
"message": "Something is broken",
"metadata": { "url": "/dashboard", "segment": "TEAM" }
}'Free: public appSlug. Team/Scale: API key + webhooks.
Use appSlug on Free. Add apiKey when your workspace is on Team or Scale.
Open dashboardimport { FeedbackWidget } from '@/components/feedback-widget'
export function App() {
return (
<FeedbackWidget
appSlug="your-app-slug"
position="bottom-right"
metadata={{ experiment: 'landing-v2' }}
/>
)
}