← App Prototypes
App Prototypes 2026-07-16

Content Pulse

One dashboard to rule all your platforms — cross-platform creator analytics for solo content businesses.

Content Pulse
Prototype

Content Pulse

One dashboard to rule all your platforms — cross-platform creator analytics for solo content businesses.

Date: 2026-07-16 Form factor: Web app Status: Prototype

What it is

Content Pulse is a unified analytics dashboard that consolidates a creator's metrics from YouTube, Instagram, TikTok, LinkedIn, and X into a single view. It surfaces follower growth trends, engagement rates, top-performing posts, and revenue breakdowns across every platform — replacing the daily ritual of logging into five separate dashboards. The prototype runs entirely in the browser with realistic sample data and is designed as the demo experience that sells a $19/month subscription.

Who it serves

Solo creators and indie content businesses (50k–500k combined followers) who publish on 3+ platforms and spend 30–60 minutes a day manually checking each platform's native analytics. They're data-savvy enough to want numbers but too time-constrained to build custom dashboards or afford enterprise analytics suites.

Why it could be profitable

The creator economy crossed $250 billion in 2025 and is on track for $480 billion by 2027, with 48% of all creators operating as solo businesses. Cross-platform fragmentation is the #1 operational pain: 32% of creators cite unreliable or declining social reach as a major strategic concern, and those without a unified analytics view waste 10+ hours monthly on manual reporting. Existing solutions (Buffer at $5/channel, enterprise-tier InfluenceFlow) either nickel-and-dime by platform or are priced for agencies. A flat $19/month for unlimited platform connections — aimed squarely at the solo creator — captures the underserved middle of the market. Upsell path: $49/month team tier for creator collectives and management agencies.

Form factor & scope

A single-page web app. This prototype demonstrates the analytics dashboard experience with a 12-week follower growth chart, per-platform stat cards, a top-posts leaderboard, and a revenue breakdown — all rendered from a sample-data.json file. The live product would connect to platform APIs via OAuth.

How to run it

  1. Open index.html in any modern browser (Chrome, Firefox, Safari, Edge).
  2. Use the platform filter buttons to narrow the view to a single platform.
  3. Hover over chart data points for tooltips.
  4. Sort the top posts table by views, engagement, or revenue.

Note: All data is loaded from sample-data.json via a fetch() call. If you open the file directly from the filesystem (file:// protocol) and your browser blocks local fetches, serve it with npx serve . or Python's python3 -m http.server 8000 and open http://localhost:8000.

What's in this prototype

  • Summary bar: total followers, monthly views, average engagement rate, and monthly revenue — all platforms combined.
  • Platform filter: toggle between All, YouTube, Instagram, TikTok, LinkedIn, and X to filter every widget.
  • Follower growth chart: 12-week line chart (Chart.js) per platform, filterable.
  • Platform stat cards: per-platform follower count, change, engagement rate, and revenue share.
  • Top posts leaderboard: sortable table of the 10 best posts by views, likes, comments, engagement, or revenue.
  • Revenue breakdown bar: per-platform revenue visualized as proportional bars with dollar amounts.

Roadmap

  • OAuth connections to YouTube Data API, Instagram Graph API, TikTok Creator Marketplace API, LinkedIn Partner API, and X API v2
  • Historical data export (CSV / Google Sheets sync)
  • AI-generated weekly insights: "Your TikTok engagement is 2× your YouTube rate — try repurposing your top TikTok hooks as YouTube Shorts"
  • Brand deal CRM: track sponsorship pitches, rates, and deadlines
  • Competitor benchmarking: compare your growth rate to creators in your niche

Sources

Requirements

Content Pulse — Requirements

Goals

  • Give solo creators a single dashboard that replaces 5+ platform-native analytics pages.
  • Reduce the daily analytics ritual from 30–60 minutes to under 5 minutes.
  • Surface actionable insights (top post types, best-performing platform, engagement trends) without requiring spreadsheets or SQL.
  • Provide a compelling free demo that converts to a $19/month subscription.

Primary user

Persona: Alex, 29, solo personal-finance creator with 250k combined followers across YouTube, Instagram, and TikTok. Posts 4–6 times per week across platforms. Makes $6k–$12k/month from AdSense, brand deals, and affiliate links. Spends 45 minutes every morning checking each platform individually. Has tried spreadsheets but can't keep them current.

Functional requirements

  • FR1: Display a summary bar showing total followers, total monthly views, average engagement rate, and total monthly revenue across all connected platforms.
  • FR2: Render a multi-series line chart showing weekly follower counts for each platform over a rolling 12-week window.
  • FR3: Support a platform filter that narrows every widget (chart, stat cards, posts table) to the selected platform or shows all simultaneously.
  • FR4: Show per-platform stat cards with: follower count, net follower change (current week vs. prior week), engagement rate, and revenue.
  • FR5: Display a top-posts leaderboard (up to 10 posts) with columns for platform, title, date, views, likes, comments, engagement rate, and revenue.
  • FR6: Allow the leaderboard to be sorted ascending/descending by any column via a single click.
  • FR7: Visualize revenue distribution per platform as proportional horizontal bars with dollar amounts.
  • FR8: Load all data from sample-data.json via fetch() so the demo requires no back-end.
  • FR9: Highlight the current active platform filter visually (button state).
  • FR10: Render correctly on viewports from 375px (iPhone SE) to 2560px (ultrawide).
  • FR11: Show platform-color-coded indicators on the follower growth chart legend and the stat cards.
  • FR12: Display a "Connect your platforms" CTA button that would trigger the OAuth flow in the live product.

User stories

  • As a solo creator, I want to see all my follower counts in one view, so I don't have to open five browser tabs every morning.
  • As a creator, I want to filter analytics by platform, so I can deep-dive into my TikTok performance without noise from other channels.
  • As a creator, I want to see which posts made the most money, so I can decide what type of content to prioritize.
  • As a creator, I want to track follower growth over 12 weeks, so I can spot whether a posting change helped or hurt.
  • As a creator running a content business, I want to see revenue by platform at a glance, so I can rebalance effort toward the most profitable channels.
  • As a creator, I want the dashboard to load fast with no login required for the demo, so I can evaluate it before buying.
  • As a creator on mobile, I want the dashboard to be usable on my phone, so I can check metrics while commuting.

Non-functional requirements

  • Performance: page must fully render within 2 seconds on a standard broadband connection.
  • Accessibility: color contrast must meet WCAG 2.1 AA; platform filters must be keyboard-navigable.
  • Privacy: the prototype loads no tracking pixels, sends no analytics, and makes no network requests beyond loading Chart.js from CDN and sample-data.json.
  • Portability: no build step required; must work when served from any static file host (GitHub Pages, Netlify, Vercel, local HTTP server).

Out of scope (for the prototype)

  • Real OAuth connections to platform APIs.
  • User accounts, authentication, or persistent storage.
  • Historical data beyond the 12-week sample window.
  • Push notifications or email digests.
  • Team / agency multi-seat support.
  • AI-generated insights (planned for v2).

Open questions

  • Which platform APIs are most rate-limited for the free tier? (Affects which platforms ship first in v1.)
  • Should revenue data require manual entry (privacy-safe) or pull from Stripe/PayPal for sponsorship payouts?
  • Is $19/month the right price, or should it be per-platform ($5/platform) to match Buffer's model?

More from App Prototypes