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

01

Create your account

Sign up for free. No credit card required. Get instant access to your dashboard.

02

Grab your API key

Generate a secure API key from your dashboard. One key for all features.

03

Create content

Write changelogs, announcements, polls — anything. Markdown supported.

04

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

Fetch updatesGET
const updates = await fetch(
  '/api/v1/updates?type=changelog&limit=5',
  {
    headers: {
      Authorization: 'Bearer by_live_xxx'
    }
  }
).then(r => r.json());
Submit feedbackPOST
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]'
  })
});
Track page viewPOST
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
Dashboard → API Keys

Production

by_live_a1b2c3d4...xyz

Active

Development

by_live_x9y8z7w6...abc

Active

Ready to get started?

Free forever. 1,000 API calls/day. No credit card required.