100 free credits — no credit card required.Start building
Logo
Analyze

YouTube Shorts money calculator for any channel

Paste a channel handle. We pull its real Shorts (not its long-form uploads), average the views, and estimate the ad-pool payout with a Shorts RPM range. Shorts monetize completely differently from regular videos, so a normal YouTube calculator gets this wrong by a factor of 50.

Estimate Shorts revenue

One handle. Real Shorts, real views.

Free. No login needed.

Live SocialCrawl API data

Shorts money is pool money

A normal YouTube calculator will tell you a Short earns like a video. It does not. Enter a handle and see the real number.

  • 01The real Shorts feed, not the long-form Videos tab
  • 02A defensible RPM band, printed with the result
  • 03Your posting cadence, read from real upload dates

Searching 44 platforms in parallel

·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
How it works

Three steps, zero learning curve

Paste a URL, hit run, get structured data. That's the whole workflow.

  1. 01

    How does the YouTube Shorts money calculator work?

    Enter a channel handle. We fetch its live subscriber count and its actual Shorts feed, then average the view count across every Short we find.

  2. 02

    Why not just use a normal YouTube money calculator?

    Because Shorts are not paid like long-form. A long-form ad pays the video that ran it. Shorts ads run between Shorts in the feed, so the revenue is pooled, music licensing comes out of the pool first, and 45% of what is left is split across creators by view share. The per-view rate that falls out is far lower.

  3. 03

    How accurate is the estimate?

    The views, subscribers and upload cadence are real and pulled live. The Shorts RPM is a range, because YouTube does not publish one. We print the band we applied on the result, so you can check our working.

Developer API

Use it in your code in seconds

Same engine, exposed as a clean REST API. One key works for every platform — and every response uses the same schema.

One key, every platform

Authenticate once. Hit TikTok, Instagram, YouTube, Reddit, and 17 more — all from the same key.

Same shape, every response

Identical schema across platforms. Write your integration once and never adapt to a new payload.

Drop into any agent

Cleanly typed JSON, ready for LLM tool-calls, RAG pipelines, and automation flows.

import requests

response = requests.get(
    'https://www.socialcrawl.dev/v1/youtube/channel',
    params={'handle': '@mkbhd'},
    headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json()
[ .JSON ]
{
  "success": true,
  "platform": "youtube",
  "data": {
    "channel": {
      "handle": "@mkbhd",
      "subscribers": 19400000
    },
    "engagement": {
      "avg_views": 4200000,
      "engagement_rate": 0.062
    },
    "metadata": {
      "language": "en",
      "content_category": "tech"
    }
  }
}
and many more
Try a search

What is the world really saying?

Type a question. Twelve walled gardens search at the same time. AI gives you the brief — the source posts stay one click away.

For builders → MCP, skills, and the API
Use cases

Real ways teams use this tool

A few patterns we see from marketers, researchers, and builders shipping with SocialCrawl.

Creators

What do my Shorts actually pay?

See the ad-pool payout for one Short at your real average view count, before you plan any income around it.

0%

creator share

of the Shorts pool

0RPM

range

never one number

Brands

What is a Shorts channel worth?

Size up a Shorts creator's reach, posting cadence and view-based engagement in seconds, with no media kit.

0s

to estimate

no media kit

0

logins

totally free

Ad pool

Understand the 45% split

See what the Shorts revenue pool actually pays at your view count, not what a long-form RPM would pay.

Reality check

Compare Shorts to long-form

Find out why a million Shorts views and a million long-form views are not the same paycheck.

Cadence

Project a month of Shorts

We read the channel's real upload dates, work out how often it posts, then multiply the per-Short range.

Frequently asked questions

Can't find what you're looking for? Talk to our team or ask the AI agent below

Roughly $10 to $70. YouTube pools all Shorts ad revenue, pays music licensing out of it, then splits 45% of the remainder across creators by view share. Creator-reported Shorts RPM lands around $0.01 to $0.07 per 1,000 views, so a million Shorts views is tens of dollars, not thousands. This tool applies that band to a channel's real average Shorts views.

More tools you might like

Every SocialCrawl tool, one click away.