Free forever ยท No credit card

Talk to your users.
Let them talk back.

Push product updates to your users in-app. Collect their feedback, bug reports, and feature requests. Analytics to understand it all. One API. One dashboard.

Sound familiar?

๐Ÿ˜ค

"Can you add export to CSV?"You shipped it 2 months ago

๐Ÿ“

Changelog in Notion with 12 views3 are from you

๐Ÿ“ง

"Product Update!" email2% open rate, mostly bots

๐Ÿ”ง

Building a changelog from scratchAgain. For the 4th project.

๐Ÿคท

"Did anyone see the update?"No way to know

โฐ

"I'll set up a proper system later"It's been 6 months

What if updates just... showed up where your users already are?

Write here. Show there.

A dashboard to write updates. An API to fetch them. Display them anywhere in your app. Your users will actually see what you shipped.

1. Dashboard

Write "Dark mode is here"

Pick a type. Add content. Hit publish. Done in 30 seconds.

2. API

GET /api/v1/updates

One endpoint. Bearer auth. Returns JSON. That's it.

3. Show it in your app โ€” however you want

Modal

What's New โœจ

ร—
NEWToday

Dark mode is here

Toggle in settings โ†’ appearance

UPDATE2d ago

50% faster exports

Toast notification

๐ŸŽ‰

New feature!

Dark mode is now available

ร—
โš ๏ธ

Scheduled maintenance

Dec 24, 2am-4am UTC

Sidebar widget

๐Ÿ“ข Updates

Dark mode shipped

API v2 available

Bug fixes & perf

View all โ†’

Same data, your design. Fetch once, render anywhere.

Integrate in 5 minutes

Dashboard to write. API to fetch. Your UI to display.

1

Create an update

Write your changelog, pick a type (changelog, notification, product_update), hit publish.

2

Grab your API key

Generate a key in settings. It starts with by_live_ โ€” copy it.

3

Fetch from your app

Call GET /api/v1/updates with your key. Render however you want.

Works with everything: React, Next.js, Vue, Svelte, vanilla JS, mobile apps, or any HTTP client.

your-app.js
// Fetch your latest updates
const response = await fetch(
  'https://businessyatch.com/api/v1/updates',
  {
    headers: {
      'Authorization': 'Bearer by_live_xxxxx'
    }
  }
);

const { updates } = await response.json();

// Response:
// {
//   updates: [
//     {
//       id: "upd_abc123",
//       type: "changelog",
//       title: "Dark mode is here",
//       content: "We shipped dark mode...",
//       createdAt: "2024-12-23T10:00:00Z"
//     }
//   ]
// }

Complete communication suite

Updates out. Feedback in.

Two APIs. One dashboard. Ship updates to users and collect their feedback โ€” all in one place.

Product Updates

Push changelogs, feature announcements, and maintenance notices. Users see them in-app, exactly where they're looking.

Changelog, notification, product_update types
GET /api/v1/updates endpoint
Filter by type, paginate, render anywhere

Customer Feedback

Collect bug reports, feature requests, and complaints from your users. Auto-detect sentiment. Track resolution. Analyze trends.

Bug, feature, question, complaint, praise types
POST /api/v1/feedback endpoint
Analytics dashboard with sentiment insights
feedback-widget.js
// Collect feedback from your users
await fetch('https://businessyatch.com/api/v1/feedback', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer by_live_xxxxx',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    type: 'bug',           // bug, feature, question, complaint, praise
    message: 'Export to PDF is broken on Safari',
    email: '[email protected]',
    rating: 3,             // optional 1-5 star rating
    source: 'feedback-widget'
  })
});

// Response: { success: true, id: "fb_abc123" }

Eating our own dogfood

Our changelog, powered by our API

Everything below is fetched from our own API. This is exactly what your users will see.

NEWDec 23, 2024

Visual mockups on landing page

Added modal, toast, and sidebar mockups so you can see exactly how updates look in your app.

UPDATEDec 22, 2024

Mobile-responsive dashboard

Dashboard now works beautifully on mobile with a slide-out navigation menu.

LAUNCHDec 20, 2024

Pricing page with free tier

Added pricing page. Free forever tier is live โ€” Pro and Enterprise coming soon.

FIXDec 19, 2024

API key generation fixes

Fixed edge cases in API key creation and improved error messages.

What developers are saying

"Our users kept asking for features we'd already shipped. Added business yatch in an afternoon, now every update shows in-app. Support tickets dropped 30%."

โ€” Solo founder, SaaS app

"Finally, a changelog API that isn't overengineered. Write, publish, fetch. That's it. Exactly what I needed."

โ€” Indie hacker

Free forever

Start for $0. Scale when ready.

1,000 API requests/day. Unlimited updates. No credit card. Upgrade later if you need more.