Quick Start Guide
Up and running
in 5 minutes
One API, endless possibilities. Follow these steps to integrate Business Yatch into your application.
The Process
Four simple steps
Create your account
Sign up for free. No credit card required. Get instant access to your dashboard.
Grab your API key
Generate a secure API key from your dashboard. One key for all features.
Create content
Write changelogs, announcements, polls — anything. Markdown supported.
Fetch and display
Simple REST API. Fetch JSON, render in your app however you want.
Code Examples
Dead simple API
Whether you're fetching updates or collecting feedback, it's just a few lines of code. Works with any language or framework.
RESTful endpoints
Standard HTTP methods, JSON responses
Bearer token auth
Secure API key authentication
Query parameters
Filter by type, limit, pagination
const updates = await fetch(
'/api/v1/updates?type=changelog&limit=5',
{
headers: {
Authorization: 'Bearer by_live_xxx'
}
}
).then(r => r.json());await fetch('/api/v1/feedback', {
method: 'POST',
headers: {
Authorization: 'Bearer by_live_xxx',
'Content-Type': 'application/json'
},
body: JSON.stringify({
type: 'feature',
message: 'Add dark mode please!',
email: '[email protected]'
})
});await fetch('/api/v1/analytics/track', {
method: 'POST',
headers: { Authorization: 'Bearer by_live_xxx' },
body: JSON.stringify({
event: 'page_view',
path: '/pricing',
referrer: document.referrer
})
});Everything Included
12 features, one API
Stop paying for separate tools. Everything you need to communicate with your users.
Changelog
Version updates and releases
Announcements
Important notices
Blog
Long-form content
Polls
User voting and surveys
Feedback
Bug reports & feature requests
Roadmap
What's coming next
Release Notes
Detailed version history
Notifications
Quick alerts
CRM
Contact management
Analytics
Track page views & events
Surveys
Collect detailed feedback
Feature Requests
Track user requests
Security First
Your API key
One key unlocks everything. Generate multiple keys for different environments — development, staging, production.
- ●Keys start with
by_live_ - ●Revoke anytime from dashboard
- ●Rate limited to prevent abuse
- ●Never expose in frontend code
Production
by_live_a1b2c3d4...xyz
Development
by_live_x9y8z7w6...abc
Ready to get started?
Free forever. 1,000 API calls/day. No credit card required.