Everything you need to integrate Business Yatch into your product.
Business Yatch is a product intelligence platform that combines feedback collection, product updates, surveys, and a lightweight CRM into one tool. It replaces multiple SaaS subscriptions with a single, developer-friendly API.
Add this script tag to your website:
<script src="https://businessyatch.com/widget.js?key=YOUR_API_KEY"></script>After logging in, you'll see the sidebar with all main sections:
The Home page shows action items that need your attention - unresolved bugs, pending feature requests, and unanswered questions. Click any item to view details and respond.
Polls let you gather quick feedback from users:
Go to Feedback in the sidebar to see all submissions.
There are multiple ways to collect feedback:
Click on any survey to see:
Contacts are automatically created when:
Use tags to segment your contacts:
Each contact profile shows:
Go to Analytics in the sidebar. You can also access feedback-specific analytics from Feedback → Analytics.
Understand your feedback trends:
Filter all analytics by date range:
Announce features, fixes, and news. Users see updates in-app via widget.
Collect bugs, feature requests, questions, and praise. Automatic contact creation.
Create NPS, rating, and custom surveys. Shareable links and response analytics.
Lightweight customer management. Tags, notes, and feedback history per contact.
Feedback trends, NPS tracking, and volume over time.
All requests require a Bearer token in the Authorization header:
Authorization: Bearer by_live_xxxxxxxxxxxx/api/v1/updatesFetch published updates
Query parameters:
type - Filter by type (changelog, notification, product_update)limit - Number of results (default: 10, max: 100)/api/v1/feedbackSubmit user feedback
Request body:
{
"type": "feature", // bug, feature, question, complaint, praise
"message": "Feedback text here",
"email": "[email protected]", // optional
"name": "User Name", // optional
"rating": 4 // optional, 1-5
}JavaScript
const response = await fetch('https://businessyatch.com/api/v1/updates', {
headers: { 'Authorization': 'Bearer YOUR_API_KEY' }
});
const data = await response.json();cURL
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://businessyatch.com/api/v1/updatesYes. You can create an account and use all features for free. No credit card required.
No. You can use the dashboard for everything. The API is optional for advanced integrations.
Yes. Use the REST API to integrate with iOS, Android, React Native, Flutter, or any platform.
Yes. You can customize colors, position, and which elements to display.