Earlier this month Marc Lou opened up the data from TrustMRR with an HTTP API. TrustMRR is a database of startups with verified revenue from payment providers like Stripe.
The API can be queried like this.
curl -s -G "https://trustmrr.com/api/v1/startups" \
-H "Authorization: Bearer $TRUSTMRR_API_KEY" \
--data-urlencode "limit=3" \
--data-urlencode "sort=revenue-desc"[
{
"name": "Gumroad",
"slug": "gumroad",
"url": "https://trustmrr.com/startup/gumroad",
"icon": "https://d21oz30g4w22sz.cloudfront.net/logos/gumroad-113809f2-c628-4d3a-8adb-fbdc414784d7.png",
"description": "Go from 0 to $1",
"website": "https://gumroad.com",
"country": "US",
"foundedDate": "2011-11-05T20:37:14.000Z",
"category": "E-commerce",
"paymentProvider": "stripe",
"targetAudience": null,
"revenue": {
"last30Days": 7143937.999999995,
"mrr": 0,
"total": 878595860.5199997
},
"customers": 0,
"activeSubscriptions": 0,
"askingPrice": null,
"profitMarginLast30Days": null,
"growth30d": null,
"growthMRR30d": null,
"multiple": null,
"rank": 1,
"visitorsLast30Days": null,
"googleSearchImpressionsLast30Days": null,
"revenuePerVisitor": null,
"onSale": false,
"firstListedForSaleAt": null,
"xHandle": "shl"
},
{
"name": "Stan",
"slug": "stan",
"url": "https://trustmrr.com/startup/stan",
"icon": "https://files.stripe.com/links/MDB8YWNjdF8xTXlnNkdDY0N2cGd5d1RufGZsX2xpdmVfUDcwUmxUUjZuUFR0RDhrS2ZpMEI3bkZN00QXGw5NKb",
"description": "Stan enables people to make living and work for themselves.",
"website": "https://stan.store",
"country": "US",
"foundedDate": "2023-04-19T18:51:28.000Z",
"category": "Content Creation",
"paymentProvider": "stripe",
"targetAudience": "B2C",
"revenue": {
"last30Days": 3064845.538827899,
"mrr": 3545369.01,
"total": 73382374.30495502
},
"customers": 0,
"activeSubscriptions": 100554,
"askingPrice": null,
"profitMarginLast30Days": null,
"growth30d": 9.250886704492489,
"growthMRR30d": 47.60135614010745,
"multiple": null,
"rank": 3,
"visitorsLast30Days": null,
"googleSearchImpressionsLast30Days": null,
"revenuePerVisitor": null,
"onSale": false,
"firstListedForSaleAt": null,
"xHandle": "vitddnv"
},
{
"name": "easytools",
"slug": "easytools-sp-z-o-o",
"url": "https://trustmrr.com/startup/easytools-sp-z-o-o",
"icon": "https://files.stripe.com/links/MDB8YWNjdF8xSXIxTDRFbnRqdUdOYURHfGZsX2xpdmVfYTBOWjN0OXBsUGFpZklDOVBZMHJEUVBW00tG23D7uD",
"description": "Sell digital products easier than ever before",
"website": "https://easycart.pl",
"country": "PL",
"foundedDate": "2021-05-14T13:46:02.000Z",
"category": "E-commerce",
"paymentProvider": "stripe",
"targetAudience": null,
"revenue": {
"last30Days": 2703570.4649458947,
"mrr": 0,
"total": 82107087.16467215
},
"customers": 0,
"activeSubscriptions": 0,
"askingPrice": null,
"profitMarginLast30Days": null,
"growth30d": null,
"growthMRR30d": null,
"multiple": null,
"rank": 2,
"visitorsLast30Days": null,
"googleSearchImpressionsLast30Days": null,
"revenuePerVisitor": null,
"onSale": false,
"firstListedForSaleAt": null,
"xHandle": "greg_rog"
}
]
The numbers here are difficult for me to comprehend, given that I'm still working towards the mythical $10k MRR:
- Gumroad made ~$7.1M in the last 30 days from one-time sales alone (no MRR)
- Stan has 100K paying subscribers at $3.5M MRR
- easytools made $2.7M in the last 30 days, also entirely from one-time sales
I am currently building a few businesses, so I wanted to know what I could learn from these startups. Sure, it's probably not a perfect sample of the full startup population, but at 5,372 startups (as of March 16th 2026), there should be some signal there.
So I pulled the full data from TrustMRR and went on exploring with OpenClaw.
Same as with programming, when I start writing something, I start with a rough idea of what I want to communicate, and most times don't know where things will lead. I just follow my curiosity, and the path usually reveals itself. Here's an overview of what that exploration ended up looking like.
At the end I had a TrustMRR database of top 200 startups by revenue enriched with:
- the technologies they use
- their SEO data (including the SEO target keywords I think they're trying to rank for on Google), and
- a full analysis of their organic and paid competitors
If you're interested in that, you can download the database below.
Download the enriched top 200 TrustMRR database
All 200 startups with their tech stacks, SEO metadata, SEO target keywords, organic rankings, and paid competitor data.
- Technology detection results for every site
- SEO metadata and SEO target keywords
- Google Search rankings and Google Ads competitors
If you're interested to see exactly how I got it, follow along!
What even are these businesses?
Before we do a deep dive into their technology stacks and competitive landscapes, it's worth trying to answer something more basic: what do these startups actually do?
Each startup is assigned a single category in TrustMRR. Not all of them have one (and some are anonymous), so the charts below cover the 4,803 that do. Comparing the category distribution of the full 4,803 vs the top 200 already reveals something.
All 4,803 startups
Top 200 by revenue
AI dominates both at around a quarter of startups. But the differences are more interesting than the similarities.
Marketing nearly doubles its share: 5% of all startups but 10% of the top earners. E-commerce jumps from 2.4% to 6%, and Marketplace from 1.5% to 4%.
On the other hand, Productivity drops from 6.5% to 2% and Developer Tools from 7% to 4%. Mobile Apps and Fintech shrink too.
💡 From this data, it follows that if you are building a startup, you are more likely to have more revenue if you are building a product that solves marketing or e-commerce problems.
| Category | All | Top 200 | Shift |
|---|---|---|---|
| Marketing | 5.4% | 10.0% | +4.6pp |
| E-commerce | 2.4% | 6.0% | +3.6pp |
| Marketplace | 1.5% | 4.0% | +2.5pp |
| Sales | 1.1% | 3.0% | +1.9pp |
| ··· | |||
| Fintech | 3.2% | 1.5% | -1.7pp |
| Utilities | 2.4% | 0.5% | -1.9pp |
| Developer Tools | 7.2% | 4.0% | -3.2pp |
| Productivity | 6.5% | 2.0% | -4.5pp |
How much money are they making?
From the full sample of all 5,372 startups on TrustMRR, 95% did not cross $10k in revenue in the last 30 days.
The top 200 are a different story. TrustMRR ranks startups by total revenue in the last 30 days. That includes both recurring subscriptions and one-time purchases. By that measure, pretty much all of the top 200 have made at least $10k.
Last 30 days revenue
All startups
Top 200
Monthly recurring revenue (MRR)
All startups with subscriptions
Top 200 with subscriptions
But revenue and MRR are not the same thing. 4 in 10 of the top 200 are still under $10K MRR. A lot of the money at the top is coming from one-time purchases, not recurring subscriptions.
💡 A business built on one-time sales can still bring in money every month.
What technologies are they using?
So now we have a better idea of what these businesses are. Lots of AI products overall, and marketing and e-commerce products making good revenue.
I was also curious to know the tech stacks they use. Are they using boring technology? Which JavaScript and CSS frameworks? Where are they hosted? What kind of analytics do they track?
Webscraperapi has a /detect_technologies endpoint that gathers all of that
data for a given URL. So I tried it on Stan's landing page to see what's
actually under the hood:
curl -s -G "https://api.webscraperapi.ai/v1/detect_technologies" \
-H "Authorization: Bearer $WEBSCRAPERAPI_API_KEY" \
--data-urlencode "output=json" \
--data-urlencode "url=https://stan.store"[
{
"slug": "vue_js",
"name": "Vue.js",
"category": "javascript_frameworks",
"description": "Progressive JavaScript framework",
"website": "https://vuejs.org",
"version": null,
"confidence": 1.0,
"evidence": [
"Found element with Vue scoped attribute: data-v-app"
]
},
{
"slug": "ga4",
"name": "Google Analytics 4",
"category": "analytics",
"description": "Google's analytics platform",
"website": "https://analytics.google.com",
"version": null,
"confidence": 1.0,
"evidence": [
"Script src matches GA4 gtag.js pattern: https://www.googletagmanager.com/gtag/js?id=G-FPXVPVPGVK&l=dataLayer"
]
},
{
"slug": "google_ads_conversion",
"name": "Google Ads Conversion Tracking",
"category": "advertising",
"description": "Google Ads conversion measurement",
"website": "https://ads.google.com",
"version": null,
"confidence": 1.0,
"evidence": [
"Script src matches Google Ads conversion pattern: https://www.googletagmanager.com/gtag/js?id=AW-10854378575&cx=c>m=4e63g0"
]
},
{
"slug": "google_tag_manager",
"name": "Google Tag Manager",
"category": "tag_managers",
"description": "Tag management system by Google",
"website": "https://tagmanager.google.com",
"version": null,
"confidence": 1.0,
"evidence": [
"Script src matches GTM pattern: https://www.googletagmanager.com/gtm.js?id=GTM-W9MXN8NB"
]
},
{
"slug": "facebook_pixel",
"name": "Facebook Pixel",
"category": "advertising",
"description": "Meta advertising pixel for tracking and targeting",
"website": "https://www.facebook.com/business/tools/meta-pixel",
"version": null,
"confidence": 1.0,
"evidence": [
"Script src matches Facebook SDK pattern: https://connect.facebook.net/signals/config/4296631060464751?v=2.9.277&r=stable&domain=www.stan.store&hme=b0ad3...",
"Script src matches Facebook SDK pattern: https://connect.facebook.net/en_US/fbevents.js"
]
},
{
"slug": "tiktok_pixel",
"name": "TikTok Pixel",
"category": "advertising",
"description": "TikTok advertising pixel",
"website": "https://ads.tiktok.com",
"version": null,
"confidence": 1.0,
"evidence": [
"Script src matches TikTok Pixel pattern: https://analytics.tiktok.com/i18n/pixel/events.js?sdkid=CVCARNJC77U2KF3E4G70&lib=ttq"
]
},
{
"slug": "linkedin_insight",
"name": "LinkedIn Insight Tag",
"category": "advertising",
"description": "LinkedIn advertising and analytics tag",
"website": "https://business.linkedin.com",
"version": null,
"confidence": 1.0,
"evidence": [
"Script src matches LinkedIn Insight pattern: https://snap.licdn.com/li.lms-analytics/insight.min.js"
]
},
{
"slug": "microsoft_clarity",
"name": "Microsoft Clarity",
"category": "analytics",
"description": "Free behavioral analytics tool",
"website": "https://clarity.microsoft.com",
"version": null,
"confidence": 1.0,
"evidence": [
"Script src matches Clarity pattern: https://scripts.clarity.ms/0.8.57/clarity.js",
"Script src matches Clarity pattern: https://www.clarity.ms/tag/hkx2zp0ttt"
]
},
{
"slug": "google_fonts",
"name": "Google Fonts",
"category": "fonts",
"description": "Free web font hosting service by Google",
"website": "https://fonts.google.com",
"version": null,
"confidence": 1.0,
"evidence": [
"Tag references Google Fonts: https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;500;600;700;800;900&display=swap",
"Tag references Google Fonts: https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600;800&display=swap",
"Tag references Google Fonts: https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@100;200;300;400;600;700;800;900&display=swap",
"Tag references Google Fonts: https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;600;700;800;900&display=swap"
]
}
]Each detected technology comes with a confidence score, and evidence showing exactly what was detected on the page. Overall, this data gives us a better idea about the business. We can see that Stan uses Vue.js and is serious about analytics, with 7 tracking and advertising tools.
Armed with this API, I asked my OpenClaw (Clawie) to pull the top 200 startups
by revenue from TrustMRR and run detect_technologies on each one using the
webscraperapi API.
Clawie wrote a Python script that sent concurrent async requests to the webscraperapi API, and in just a few seconds I got all of the technology data for the 200 websites.
As a sidenote, I'm used to it at this point, but the fact that agents like OpenClaw, Claude Code, and Codex will write small scripts on the spot to handle all sorts of things is so valuable. Disposable scripts! The type of thing that at least I wouldn't do before the Age of AI™ since each script would take away from my finite and constrained thinking (and by extension, my time), which is now available on tap thanks to LLMs.
The data Clawie got us can be visualized as a table, like the one below.
| Company | Rev/30d | Growth | Subs | Tech stack |
|---|---|---|---|---|
Gumroad gumroad.com | $7,143,938 | — | — | Cloudflare AnalyticsFacebook PixelLaravelReactRuby on RailsStripeTailwindVite |
Stan stan.store | $3,066,695 | +9.6% | 100,650 | Facebook PixelGA4Google Ads ConversionGTMLinkedIn InsightMicrosoft ClarityTikTok PixelVue.js |
easytools easycart.pl | $2,703,570 | — | — | Facebook PixelGA4Google Ads ConversionGTMIntercomjQueryLinkedIn InsightMicrosoft ClarityMixpanelSentryWebflow |
Brand On Demand, Inc. supliful.com | $1,028,410 | +16.2% | 3,904 | Facebook PixelGTMHubSpotIntercomjQueryMicrosoft ClarityTikTok PixelWebflow |
Stack Influence stackinfluence.com | $772,895 | -0.5% | 64 | Cloudflare AnalyticsFacebook PixelGA4Google Ads ConversionGTMHubSpotjQueryLinkedIn InsightWebflow |
Comp AI trycomp.ai | $482,520 | +25.4% | 11 | Cloudflare AnalyticsFacebook PixelGoogle Ads ConversionGTMNext.jsPostHogReactTailwind |
Avenue Ticketing, Inc. avenueticket.com | $321,055 | +131.3% | — | TailwindVite |
TrimRx trimrx.com | $282,867 | -12.8% | 2,003 | GA4Google Ads ConversionGTMMicrosoft ClarityPinterest TagSnap PixelTikTok PixelTrustpilotVue.js |
1Capture 1capture.io | $281,005 | +11.4% | 615 | CrispFacebook PixelGA4Next.jsReactTailwind |
Rezi rezi.ai | $271,495 | +8.2% | 11,650 | AmplitudeContentfulFacebook PixelGA4Google Ads ConversionGTMIntercomjQueryLinkedIn InsightSentryWebflow |
HypeProxies hypeproxies.com | $257,367 | +56.1% | — | Facebook PixelFramerGA4Google Ads ConversionGTMLinkedIn InsightMicrosoft ClarityPHPReact |
Kitze kitze.io | $223,300 | — | — | Next.jsReactTailwind |
Cometly cometly.com | $222,696 | +30.1% | 377 | Facebook PixelGA4GTMHubSpotjQueryLinkedIn InsightMicrosoft ClarityTikTok PixelWebflow |
PressWhizz presswhizz.com | $189,339 | — | — | Cloudflare AnalyticsElementorFacebook PixelGA4GTMjQueryKlaviyoWordPress |
REACT Studios™ reactstudios.com | $145,354 | +49.4% | 1,474 | Cloudflare AnalyticsLaravelTailwindVite |
GojiberryAI gojiberry.ai | $145,205 | +87.0% | 1,680 | Cloudflare AnalyticsFacebook PixelFramerGA4GTMReact |
Defined Chase definedchase.com | $144,491 | -20.3% | 13 | Cloudflare AnalyticsCookiebotDiviHubSpotjQueryWordPress |
Shugert Marketing shugert.com.mx | $130,034 | -23.2% | — | GA4jQueryWebflow |
Claw Mart shopclawmart.com | $108,094 | +2924.5% | 194 | GA4Next.jsReactTailwind |
Dealsourcr Ltd dealsourcr.com | $105,837 | +28.5% | 1,289 | Facebook PixelGA4Google Ads ConversionGTMNext.jsReactTailwind |
PROSP prosp.ai | $98,483 | +4.3% | 1,108 | Google AdsGoogle Ads ConversionIntercomjQueryWebflow |
SEOBOT seobotai.com | $94,589 | +0.7% | 1,108 | GA4GTMIntercomMicrosoft ClarityTailwind |
AEO Engine aeoengine.ai | $93,817 | +26.0% | 40 | GTMPlausibleReactTailwindVite |
Vid.AI vid.ai | $91,424 | -1.6% | 1,574 | Cloudflare AnalyticsFacebook PixelFramerGoogle AdsGoogle Ads ConversionNext.jsPlausibleReactTailwind |
Launch Club launchclub.ai | $90,069 | +53.4% | 24 | Cloudflare AnalyticsCrispFacebook PixelGTMjQueryPostHog |
MaidsnBlack maidsinblack.com | $85,486 | +21.2% | — | ElementorFacebook PixelGTMjQuerySentryWordPress |
Presscart presscart.com | $84,189 | +9.0% | 13 | AstroGoogle Ads ConversionGTMKlaviyoTailwind |
Salesrobot, INC salesrobot.co | $80,905 | +12.6% | — | CrispGA4jQueryPostHogWebflow |
DataExpert / TechCreator dataexpert.io | $79,352 | -20.7% | 925 | GA4Microsoft ClarityNext.jsReactTailwindTrustpilot |
Codédex codedex.io | $73,638 | +10.8% | 7,107 | Facebook PixelNext.jsPlausibleReactStripe |
Postiz postiz.com | $73,305 | +247.9% | 2,460 | Cloudflare AnalyticsFacebook PixelNext.jsPlausibleReactTailwind |
Teachizy teachizy.fr | $67,375 | -11.6% | 1,056 | ContentfulCookiebotCrispElementorFacebook PixelGA4GTMjQueryWordPress |
HVAKR hvakr.com | $63,404 | +137.8% | 26 | ContentfulGA4GTMHubSpotIntercomLinkedIn Insight |
BackPedal Ltd backpedal.co | $59,973 | -20.6% | 342 | Facebook PixelFramerGA4GTMPostHogReact |
Felix Craft felixcraft.ai | $59,914 | +617.4% | 1 | |
Roofclaw roofclaw.com | $59,822 | +9064.4% | — | ReactTailwindVite |
Doors Delivered doorsdelivered.com | $59,040 | -0.7% | — | CrispElementorGA4Google Ads ConversionGTMjQueryPinterest TagSymfonyTailwindTrustpilotWordPress |
Indexsy indexsy.com | $58,226 | -1.3% | 56 | Cloudflare AnalyticsFacebook PixeljQueryWordPress |
React Bits Pro pro.reactbits.dev | $57,354 | +56.9% | — | Next.jsReactTailwindVercel |
Corsidia corsidia.com | $56,718 | -17.3% | — | Cloudflare AnalyticsGoogle AdsGoogle Ads ConversionLaravelRuby on RailsVite |
LLM Gateway llmgateway.io | $56,034 | -29.0% | 2 | CrispNext.jsReactTailwind |
Kortex-Notebooklm kortex-notebooklm.com | $53,953 | +16.7% | 586 | Cloudflare AnalyticsTailwindVite |
Lunchbreak lunchbreak.ai | $53,247 | +23.9% | 3,055 | CrispFacebook PixelFramerGA4GTMMicrosoft ClarityPostHogReactSnap PixelTikTok Pixel |
STELLA PROXIES stellaproxies.com | $52,964 | +5.4% | 7 | FramerGA4GTMReact |
My X project 2 x.com/buildwithJames | $52,725 | +24.2% | 205 | |
OpenClaw Pro openclaw.new | $46,553 | +649.5% | 1,124 | GA4Google Ads ConversionGTMNext.jsReactTailwind |
MyCater mycater.fr | $44,768 | -28.0% | — | Cloudflare AnalyticsCrispGoogle Ads ConversionGTMjQueryPlausibleSpring |
Donely donely.ai | $44,195 | -18.9% | 25 | Cloudflare AnalyticsGA4GTMHubSpotMicrosoft ClarityReactTailwindVite |
Hack2hire hack2hire.com | $43,186 | +38.6% | 1,478 | Google AdsGoogle Ads ConversionNext.jsReactTailwind |
esim4u t.me/esim4u_bot/app | $40,621 | -42.0% | 1 | |
Angel Match angelmatch.io | $40,270 | +23.5% | 457 | CrispFacebook PixelGA4Next.jsReact |
SOVEREIGN LEADS LIMITED theleadguy.online | $40,054 | +10.7% | 34 | Cloudflare AnalyticsFacebook PixelGA4GTMHotjarHubSpotjQueryWordPress |
IBERGOUR ibergour.com | $39,889 | -4.9% | — | GA4GTM |
Dropkiller dropkiller.com | $39,387 | -23.9% | 2,239 | Facebook PixelNext.jsReactTailwind |
LocalRank.so localrank.so | $38,355 | +9.2% | 392 | jQueryMixpanelPostHogWordPress |
Talefy talefy.ai | $37,948 | -14.7% | 1,434 | AmplitudeCloudflare AnalyticsFacebook PixelGA4GTMKlaviyoMicrosoft ClarityNext.jsReactTikTok Pixel |
Sherpa mentoriasherpa.com | $37,454 | — | 338 | Facebook PixelLaravelPlausibleTailwindVite |
Simple Analytics simpleanalytics.com | $37,243 | +13.2% | 1,331 | Nuxt.jsTailwindVue.js |
CartBoss cartboss.io | $37,111 | +6.3% | — | Cloudflare AnalyticsFacebook PixelGA4Microsoft ClarityTailwind |
Brevilabs brevilabs.com | $37,088 | -50.9% | 1,446 | Next.jsReactTailwind |
BuildMyAgent.io buildmyagent.io | $36,988 | -11.4% | 1,038 | Next.jsReactTailwindVercel |
ChatDash, LLC chat-dash.com | $35,412 | -19.7% | 338 | GA4Google Ads ConversionGTMMicrosoft ClarityReactTailwind |
uhoh.com uhoh.com | $33,084 | +12.3% | 18 | Facebook PixelGA4GTMjQueryWebflow |
TrustMRR trustmrr.com | $33,081 | +12.1% | 15 | LemonSqueezyMicrosoft ClarityNext.jsReactTailwind |
VEX Wallet vexwallet.co | $32,813 | +190.2% | — | CrispElementorGA4jQueryWordPress |
Draft AI getdraft.io | $32,457 | -5.0% | 1,501 | LaravelViteVue.js |
Draft AI getdraft.app | $32,255 | +0.0% | 1,503 | |
Supergrow supergrow.ai | $32,216 | +14.0% | 2,315 | FramerGA4LinkedIn InsightMicrosoft ClarityMixpanelPostHogReact |
AE-intelligence humanizeaitext.ai | $32,030 | +6.0% | 1,424 | Microsoft ClarityNext.jsReactTailwind |
ConvertLabs convertlabs.io | $31,669 | -4.2% | 527 | Google AdsGoogle Ads ConversionGTMHotjar |
Calendesk calendesk.com | $30,725 | -6.2% | 367 | Cloudflare AnalyticsNext.jsReact |
notis.ai notis.ai | $30,452 | +55.1% | 647 | FramerGA4GTMIntercomPostHogReact |
Liinks liinks.co | $30,290 | +6.9% | 5,458 | Facebook PixelGA4SymfonyTikTok Pixel |
StoryShort storyshort.ai | $30,272 | -22.8% | 535 | Cloudflare AnalyticsFacebook PixelGA4Next.jsReactTailwind |
Sleek sleek.design | $30,257 | +43.1% | 819 | Facebook PixelGTMNext.jsPinterest TagReactTailwind |
Fiddl.art fiddl.art | $30,016 | +129.8% | 108 | Facebook PixelGA4ViteVue.js |
WaLead AI walead.ai | $29,763 | +61.4% | 572 | Facebook PixelGA4Google AdsGoogle Ads ConversionIntercomjQueryLinkedIn InsightMicrosoft ClarityWebflow |
POST BRIDGE post-bridge.com | $29,210 | +65.7% | 1,510 | Facebook PixelGA4Next.jsPlausibleReactTailwindVercel |
setupclaw setupclaw.com | $29,180 | +24.8% | — | Google AdsGoogle Ads ConversionNext.jsReactTailwindVercel |
Capgo capgo.app | $27,626 | +24.8% | 423 | AstroCloudflare AnalyticsPostHogTailwind |
MedPilot medpilothq.com | $26,932 | -13.5% | 160 | ReactTailwindWordPress |
SuperX superx.so | $26,782 | -24.9% | 664 | CookiebotFacebook PixelFramerGA4React |
Brainrot.mov brainrot.mov | $25,837 | +557.1% | 911 | Facebook PixelGA4Next.jsReactTailwind |
Conductor conductor.is | $25,583 | +80.5% | 96 | FramerGA4React |
SEO STACK seo-stack.io | $25,397 | +28.7% | 484 | GA4Tailwind |
Karma karmabot.chat | $24,738 | +2.9% | 268 | Cloudflare AnalyticsGA4GTM |
Low Content AI lowcontent.ai | $24,481 | +75.0% | 516 | Facebook PixelNext.jsReactTailwind |
Parakeet Chat parakeet.chat | $24,358 | +7.5% | 1,732 | Cloudflare AnalyticsFacebook PixelGA4GTMNext.jsReactTailwind |
Vidgenie.ai vidgenie.ai | $24,234 | +14.9% | 449 | AngularFacebook PixelGA4Google AdsGoogle Ads ConversionTailwindTikTok PixelVite |
Michael Veail theleadguy.online | $24,226 | +2.6% | 21 | Cloudflare AnalyticsFacebook PixelGA4GTMHotjarHubSpotjQueryWordPress |
Replayed LTD replayed.co | $23,142 | +29.0% | — | Cloudflare AnalyticsCrispFacebook PixelGA4GTMMicrosoft ClarityNext.jsReactTailwind |
RankAI rankai.ai | $22,755 | +15.7% | 95 | GA4Google AdsGoogle Ads ConversionGTMIntercomLinkedIn InsightNext.jsPlausibleReactTailwindVercel |
DataFast datafa.st | $22,661 | +22.1% | 1,162 | LemonSqueezyNext.jsReactTailwindVue.js |
Pasul.ro pasul.ro | $22,486 | +18.0% | — | Facebook PixelGA4Next.jsReactTailwind |
Ari Horesh entermedschool.com | $21,607 | +101.3% | 40 | Next.jsReactTailwindWordPress |
AI MONEY GROUP aipersonamethod.com | $20,862 | +125.6% | 119 | Facebook PixelGA4GTMjQueryMicrosoft ClarityWordPress |
AI Labs tradenote.io | $20,801 | -66.2% | — | ReactVite |
Advise.so advise.so | $20,666 | -1.8% | 251 | Cloudflare AnalyticsjQueryWordPress |
Saaspa.ge saaspa.ge | $20,604 | — | 39 | CrispHotjarNext.jsReactTailwind |
My X project 3 x.com/buildWithJames | $20,506 | +1.9% | 104 | |
Evergreen Support, LLC evergreensupport.co | $20,154 | +4.1% | 18 | GA4GTMMicrosoft ClarityNext.jsReactTailwind |
Plutio (Super Work AI) plutio.com | $20,032 | +2.4% | 868 | Facebook PixelGA4Next.jsReact |
Reddit Agency redditagency.com | $20,018 | +31.1% | 4 | Next.jsReactSentryTailwind |
Orel Zilberman, LLC substack.com/@orelzilberman | $20,016 | +9.9% | 468 | Cloudflare AnalyticsGA4Google Ads ConversionMicrosoft ClarityReact |
Tree Nerd Academy treenerdacademy.com | $19,794 | +43.0% | — | Google AdsGoogle Ads ConversionNext.jsReactTailwindVercel |
ForYouGaming Inc. foryougaming.com | $19,648 | +8.4% | — | Crisp |
Tailride tailride.so | $19,583 | +30.2% | 293 | CrispGA4GTMMicrosoft ClarityNext.jsReactTailwindVercel |
Yeema LTD yeema.co | $19,454 | +11.8% | 1 | Cloudflare AnalyticsTailwindVite |
Yaak yaak.app | $19,213 | +507.3% | 455 | Tailwind |
AutoContent API autocontentapi.com | $19,096 | +35.5% | 164 | Next.jsReactTailwind |
Altitude Cleaning Crew altitudecleaningcrew.com | $18,968 | -0.8% | — | jQueryWebflow |
Dotmarket.eu - Achat / vente de business web dotmarket.eu | $18,803 | -17.6% | 690 | Facebook PixelGA4Google AdsGoogle Ads ConversionGTMHotjarjQueryPostHogTawk.toTikTok PixelWebflow |
Digitiz.fr digitiz.fr | $18,117 | +13.8% | — | ElementorGA4jQueryMatomoWordPress |
Vibe3D AI vibe3d.ai | $17,984 | +13.5% | — | FramerGoogle AdsGoogle Ads ConversionPostHogReact |
Virlo virlo.ai | $17,747 | +18.1% | 678 | Cloudflare AnalyticsGA4GTMNext.jsPostHogReactTailwindTikTok PixelTrustpilotVercel |
Analytics Mates analyticsmates.com | $17,662 | +288.3% | 2 | ContentfulGA4GTMjQueryMicrosoft ClarityTypeformWebflow |
Synta synta.io | $17,579 | +1.4% | 441 | ChatwootGA4Next.jsReactTailwind |
Buzzly AI heybuzzly.ai | $17,465 | +156.6% | 24 | Facebook PixelGA4Google AdsGoogle Ads ConversionGTMReactTailwindVite |
Book The Move bookthemove.com | $17,230 | +8.0% | 24 | FramerReact |
Tribe Social tribesocial.io | $16,975 | +0.0% | 14 | CalendlyFacebook PixelFullStoryGA4Google Ads ConversionGTMjQueryMicrosoft ClarityWebflow |
ChatSEO chatseo.app | $16,605 | +1.0% | 340 | Cloudflare AnalyticsCookiebotNext.jsReactTailwind |
Mig mig.lemonsqueezy.com | $15,400 | — | 1,100 | Next.jsReactTailwind |
LinkPost linkpost.gg | $15,294 | +40.8% | 77 | Microsoft ClarityNext.jsReactTailwind |
Czat.ai czat.ai | $14,967 | +2.1% | 1,204 | Cloudflare AnalyticsMatomoPostHogTailwind |
Hirevire hirevire.com | $14,903 | +63.0% | 162 | Cloudflare AnalyticsNext.jsReact |
Lancer.app lancer.app | $14,859 | +80.8% | 64 | GA4Google AdsGoogle Ads ConversionHotjarNext.jsReactTailwind |
OVER THE PLANET overtheplanet.com | $14,803 | -42.5% | — | Cloudflare AnalyticsFacebook PixelGTMIntercomNext.jsReactTailwind |
Bookedin bookedin.ai | $14,698 | -19.4% | 197 | Facebook PixelGA4Google AdsGoogle Ads ConversionGTMPostHogSentryTailwind |
FindClout findclout.com | $14,469 | -37.6% | 3 | GTM |
Rendler Studio Inc. rendlerstudio.com | $14,460 | +66.0% | — | Cloudflare AnalyticsElementorFacebook PixelGA4GTMjQueryWordPress |
BlogToPin blogtopin.com | $14,419 | -26.4% | 438 | Next.jsReactTailwind |
QR Code AI qrcode-ai.com | $14,274 | +14.8% | 1,208 | CrispMicrosoft ClarityNuxt.jsVue.js |
Ave Rides LLC averides.com | $14,192 | +67.3% | 14 | GA4Google reCAPTCHAVite |
*** OF PROMPT OÜ godofprompt.ai | $14,172 | -73.9% | 358 | AmplitudeGA4jQueryLinkedIn InsightMicrosoft ClarityWebflow |
Aymo AI aymo.ai | $13,914 | +94.4% | 200 | Cloudflare AnalyticsGTMNext.jsReactStripeTailwind |
DIRECT AI directai.app | $13,779 | +22.2% | 219 | Cloudflare AnalyticsNext.jsReactTailwind |
Apiframe apiframe.ai | $13,651 | +30.7% | 180 | AstroGA4Tailwind |
Clickbait INC notion.so/The-LinkedIn-High-Intent-Outreach-System-How-We-Booked-9-Calls-in-2-Days-for-a-SaaS-Customer-26fb9abcbe3f80eca978f3ede6acf809 | $13,602 | — | 2 | |
Private Location Intelligence API platform example.com | $13,337 | +96.3% | 84 | |
SetSmart setsmart.io | $13,279 | +1.0% | — | CrispFacebook PixelGTMHotjarNuxt.jsTailwindVue.js |
ClaudeKit claudekit.cc | $13,196 | +48.6% | — | Cloudflare AnalyticsGA4Next.jsReactTailwind |
Esferas.io esferas.io | $12,992 | +3.5% | 379 | Cloudflare AnalyticsPlausibleReactTailwindVite |
RTMP.IN rtmp.in | $12,949 | +16.3% | 5 | GA4StripeTrustpilot |
SMMDealFinder.com smmdealfinder.com | $12,723 | -30.1% | 330 | Facebook PixelGA4Google Ads ConversionGTMNext.jsReactTailwindTikTok Pixel |
Prymatica prymatica.com | $12,673 | -19.0% | 36 | ContentfulElementorGoogle Ads ConversionMicrosoft ClarityWordPress |
Data Bloo databloo.com | $12,388 | +1.9% | 31 | jQueryKlaviyoTailwindWordPress |
ToolScale toolscale.io | $12,219 | — | 215 | GA4jQueryWebflow |
DM Champ dmchamp.com | $12,097 | +86.6% | 292 | Facebook PixelFramerGoogle AdsGoogle Ads ConversionMicrosoft ClarityReact |
SideQuest - B2C Finance SaaS joinsidequest.com | $11,954 | +84.2% | 2,206 | GTMNext.jsReactTailwind |
Yakkr Growth yakkrgrowth.com | $11,913 | +26.2% | 498 | Cloudflare AnalyticsGA4GTMReactTikTok PixelVite |
Cure My Swing shop.curemyswing.com | $11,850 | +0.3% | — | Facebook PixelGA4jQuery |
Superbullet, LLC superbulletstudios.com | $11,774 | +0.0% | 239 | ReactTailwindVite |
Nordgard nordgard.nl | $11,697 | -25.3% | 8 | ReactTailwindVite |
SyncForge trysyncforge.xyz | $11,601 | +1855.3% | 17 | Facebook PixelGA4Next.jsReactTailwind |
Sandimax sandimax.com | $11,579 | +0.4% | — | Next.jsReactVercel |
PipeLime pipelime.ai | $11,552 | +186.9% | 16 | Cloudflare AnalyticsGA4IntercomMicrosoft ClarityTailwind |
BDM Business benasleo.com | $11,550 | -15.4% | 7 | GA4 |
Prototipal prototipal.com | $11,325 | -4.8% | 87 | Cloudflare AnalyticsGTMNext.jsReactTailwind |
Zero G zerogtrading.com | $11,309 | +101.5% | 12 | Google AdsGoogle Ads ConversionReactTailwindVite |
ChatEDU Inc. chatedu.io | $11,048 | +9.1% | 562 | Google AdsGoogle Ads ConversionNext.jsReactTailwindVercel |
Enquiry Genie enquirygenie.ai | $11,041 | -21.4% | — | Cloudflare AnalyticsGA4Next.jsReactTailwind |
Marea Alcalina mareaalcalina.com | $10,945 | -10.3% | 59 | AngularFacebook PixelGA4GTMKlaviyoLinkedIn InsightMicrosoft ClaritySentryStripeTailwindTrustpilot |
UX Magic Inc. uxmagic.ai | $10,880 | +7.9% | 255 | GA4Google AdsGoogle Ads ConversionIntercomNext.jsReactTailwind |
Kassenmeister | AK Software GmbH kassenmeister.de | $10,825 | — | — | GA4GTMjQueryMicrosoft ClarityWebflow |
CodeFast codefa.st | $10,621 | -25.7% | — | Facebook PixelGA4Microsoft ClarityNext.jsReactTailwind |
Pitchlo pitchlo.com | $10,606 | +19.6% | 407 | Facebook PixelGA4Microsoft ClarityNext.jsReactTailwind |
Rybbit rybbit.com | $10,553 | +51.9% | 206 | ContentfulNext.jsReactTailwindVue.js |
Faceless, LLC faceless.so | $10,553 | +11.3% | 151 | CrispFacebook PixelGA4Google AdsGoogle Ads ConversionMicrosoft ClarityNext.jsReactStripeTailwind |
Coral coral.inc | $10,501 | +20902.0% | 209 | GA4GTMNext.jsReactTailwind |
ShipFast shipfa.st | $10,460 | -2.3% | — | Facebook PixelGA4Google AdsNext.jsReactTailwind |
AppAlchemy appalchemy.ai | $10,227 | +2.8% | 437 | Next.jsReactTailwindVercel |
StoryHero storyhero.gg | $10,130 | -2.1% | 522 | Microsoft ClarityNext.jsReactStripeTailwind |
Jake Marine repvision.app | $10,108 | +105.7% | 18 | ReactTailwindVite |
Produktstudio.ai produktstudio.ai | $10,095 | +218.1% | 43 | Facebook PixelGA4Google AdsGoogle Ads ConversionReactTailwindTrustpilotVite |
EverFlame Design everflamedesign.com | $9,959 | +155.4% | — | FramerReact |
ZdjecieAI.pl zdjecieai.pl | $9,909 | — | — | Cloudflare AnalyticsGoogle AdsGoogle Ads ConversionNext.jsReactTailwind |
Catalister catalister.com | $9,756 | -16.7% | 169 | GA4Google Ads ConversionGTMMicrosoft ClarityReactTailwindVite |
GenPPT genppt.com | $9,623 | -46.3% | 608 | |
StartClaw startclaw.com | $9,590 | +44.9% | 85 | GA4Google Ads ConversionIntercomReactTailwindVite |
MapPack ToolBox mappacktoolbox.com | $9,508 | -16.6% | 78 | Facebook PixelReactTailwindVite |
Stilo Media, LLC stilo.media | $9,467 | +79.3% | — | Facebook PixelGA4GTMjQueryWordPress |
The Brazil Girl thebrazilgirl.com | $9,423 | +100.3% | 97 | jQuery |
Numbers Game Limited numbersgame.uk | $9,397 | -15.0% | 660 | Facebook PixelGA4GTMKlaviyoSegmentStripeTailwindTikTok PixelVue.js |
Fidelatoo fidelatoo.fr | $9,391 | +22.1% | 209 | ElementorFacebook PixelGA4Google AdsGoogle Ads ConversionGTMHubSpotjQueryVue.jsWordPress |
Mirra mirra.my | $9,253 | +80.6% | 98 | Facebook PixelGA4Google AdsMicrosoft ClarityNext.jsReactTailwind |
Guidejar guidejar.com | $9,247 | -19.0% | 232 | Cloudflare AnalyticsCrispFacebook PixelGA4GTMNext.jsReactStripeTailwind |
OpenClaw Kit turbostarter.dev/openclaw | $9,124 | +85.0% | — | Next.jsReactTailwind |
Souls.zip souls.zip | $9,005 | +900400.0% | 1 | GA4Next.jsReactTailwind |
Arcton arcton.com | $8,875 | +57.5% | 31 | Facebook PixelGA4jQueryWebflow |
ControlResell controlresell.com | $8,861 | +22.5% | 154 | Cloudflare AnalyticsNext.jsReactTailwind |
Adspirer adspirer.com | $8,706 | +4874.9% | 89 | Facebook PixelGA4Google Ads ConversionGTMLinkedIn InsightNext.jsReactTailwind |
Aleister thealeister.com | $8,702 | +0.0% | 1 | AstroVercel |
Distribb distribb.io | $8,657 | -0.4% | 103 | Cloudflare AnalyticsFacebook PixelGA4GTMLinkedIn Insight |
LUCIDE AI lucide.ai | $8,627 | +5.9% | 316 | jQueryViteWordPress |
Local SEO Bot localseobot.com | $8,337 | +37.2% | 77 | Facebook PixelGA4GTM |
FIVEMANAGE AS fivemanage.com | $8,300 | +17.2% | 481 | CalendlyCloudflare AnalyticsNext.jsReactTailwind |
Visor visorfinance.app | $8,069 | -10.5% | 1,160 | Facebook PixelFramerGA4GTMReact |
BERACE berace.app | $7,977 | +0.0% | 525 | GA4Tailwind |
Strive Hybrid strivehybrid.com | $7,937 | +0.0% | 2,169 | Next.jsReactTailwindVercel |
Attivita24 attivita24.com | $7,930 | +34.3% | — | Facebook PixelGA4Google AdsIntercomNext.jsReact |
Setter AI LLC trysetter.com | $7,929 | -5.9% | 23 | Facebook PixelGA4Google AdsGoogle Ads ConversionjQueryLinkedIn InsightMicrosoft ClarityWebflow |
internalOS.ai internalos.ai | $7,872 | +215.5% | 2 | ReactTailwindVite |
PowerIn powerin.io | $7,839 | -0.3% | 172 | Facebook PixeljQueryWebflow |
LarryBrain - Openclaw Marketplace larrybrain.com | $7,658 | +0.0% | 378 | Next.jsReactTailwind |
RapidNative rapidnative.com | $7,607 | +36.7% | 202 | |
DropPop droppop.io | $7,510 | +20.3% | 334 | |
Dodge Print dodgeprint.com | $7,325 | +57.2% | 19 | |
CheatMate cheatmate.io | $7,280 | +50.9% | 465 | |
AdStellar adstellar.ai | $7,191 | +471.8% | 147 | |
Eloking eloking.com | $7,163 | +26.0% | — | |
AtomicBot.ai atomicbot.ai | $7,122 | +159.2% | 199 | |
Writingmate.ai writingmate.ai | $7,058 | -15.0% | 313 | |
STOIC MANUAL LLC thestoicmanual.com | $7,001 | +69.9% | 311 | |
Trackly c/o Changeflow Ltd trackly.io | $6,993 | +89.2% | — | |
OpenAlternative openalternative.co | $6,991 | +21.3% | 25 | |
Sight AI trysight.ai | $6,957 | +28.7% | 51 | |
Shiny Go Clean USA shinygoclean.com/madison | $6,933 | +285.0% | — | |
Replymer replymer.com | $6,864 | -20.0% | 42 | |
Career Hound careerhound.io | $6,857 | +43.2% | 385 | |
happyMD happymd.co | $6,771 | +43.3% | 40 | |
Peekaboo aipeekaboo.com | $6,744 | -11.2% | 68 |
Or in a more condensed tree map.
Your framework doesn't matter
Next.js leads at 79 sites, but WordPress runs 21, Webflow 20, and Framer 15. Gumroad does $7.1M on React. Stan does $3M on Vue.js. easytools does $2.7M on Webflow. The framework doesn't predict revenue at all. But I guess we all knew that already, right? And with AI agents, you're a few prompts away from porting between them anyway.
Frameworks & platforms across 202 sites
Maybe it's my bubble, but it seems that the default stack to build products these days is React/Tailwind/Next.js. jQuery still shows up a lot, but likely as a dependency for other libraries. Other than Pieter Levels, probably not many folks are building frontends on jQuery these days.
HypeProxies uses PHP and Vidgenie uses Angular on their landing page. I'd feel sorry for Vidgenie if not for the fact that they are making great revenue and seem to be growing!
Analytics
Google Analytics 4 dominates here, and many seem to be using Cloudflare analytics. I personally have been really happy with PostHog (not sponsored)!
Analytics & tag managers across 202 sites
Advertising pixels
Facebook Pixel leads at 38%. It's the default first pixel most startups install, with the broadest reach for the least setup. The more interesting signal is the gap between Google Ads (22%) and the social pixels: LinkedIn at 8%, TikTok at 7%. Most of these startups are buying intent, not attention. TikTok means consumer, younger demographics. LinkedIn means B2B. The pixel tells you the go-to-market before you even look at the product.
Ad pixels across 202 sites
The pixel stack reveals the go-to-market
You can read a startup's acquisition strategy from their pixels.
Stan runs every major pixel: Facebook, Google Ads, TikTok, and LinkedIn. At $3M+/mo and over 100K active paying customers, they can afford to pour money into every channel and see what sticks. Only 4 startups run the Facebook + Google + TikTok triple. Stan is the only one that adds LinkedIn on top.
TikTok Pixel (13 startups, including Brand On Demand, TrimRx, Lunchbreak, Talefy, Liinks) skews consumer-facing. Creator economy, supplements, weight loss, interactive games, AI content tools. A few B2B outliers like Cometly and Virlo also run it, probably tracking visitors across both platforms.
LinkedIn Insight Tag (15 startups, including easytools, Cometly, HypeProxies, Supergrow, RankAI, WaLead AI) is the B2B signal. 12 of the 15 are clearly selling to businesses. LinkedIn pixels tell you "we're B2B" more reliably than the category label does.
Facebook Pixel only (43 startups, Gumroad, Postiz, Angel Match, Codédex, CartBoss and others). These are spread across every category with a median revenue of $26K. Facebook is the first pixel you install and, for most of these startups, the only one they've gotten around to.
Google Ads without Facebook (23 startups, PROSP, Doors Delivered, Corsidia, OpenClaw Pro, Presscart and others) is intent-based acquisition. These startups are buying search traffic where the customer is already looking for a solution.
And then 95 of 199 sites (47%) show zero ad pixels. Kitze, LLM Gateway, React Bits Pro, Brevilabs, Simple Analytics, Capgo. Growing organically, through content, communities, or product-led growth. Simple Analytics has zero tracking pixels by principle, their whole product is privacy-first analytics.
And Kitze (if you're reading this article I'm sure you know who he is) did $223K in the last 30 days with zero ad pixels. His tinkerer.club, a paid community for folks excited about OpenClaw and self-hosting made $20K in a single day. No paid ads, no conversion pixels. Just Twitter, community, and word of mouth. So how do you pull that off? When someone asked him, his answer was simple (but not easy).
The 10-year marketing strategy
requires 10+ yrs of giving out information for free 😂
Open source React libraries, conference talks, workshops, free apps, thousands of tweets (he tweets a lot), YouTube videos. A decade of being useful on the internet and putting himself out there.
When he launched a paid community, the trust was already there. He didn't need to do cold outreach, or set up paid ads. People already knew and related to him. From the internet. And so he made $200k in 10 days.
47% of the top 200 startups have zero ad pixels. Some of them, like Kitze, are proof that there are powerful alternatives to paid acquisition.
💡 Years of compounding goodwill convert better than any pixel ever could.
How do they position themselves?
The technology stack tells us how they build and how they acquire customers. SEO tells us something different:
- what they promise
- who they think their buyer is, and
- what search terms they want to own.
The webscraperapi /seo endpoint pulls all of this from any URL:
curl -s -G "https://api.webscraperapi.ai/v1/seo" \
-H "Authorization: Bearer $WEBSCRAPERAPI_API_KEY" \
--data-urlencode "url=https://gojiberry.ai"{
"h1": "Find&ContactHigh-IntentLeadsWithAI",
"title": "Gojiberry AI - Grow your sales with warm leads & high intent outreach",
"description": "Gojiberry finds warm leads with 10+ intent signals like funding, new roles, events & groups. AI Agents filter by your ICP and run smart outreach campaigns, booking demos automatically while syncing with Slack, HubSpot & Pipedrive.",
"generator": "Framer 8b16de8",
"keywords": null,
"robots": "max-image-preview:large",
"lang": "en",
"og_type": "website",
"og_title": "Gojiberry AI - Grow your sales with warm leads & high intent outreach",
"og_site_name": null,
"og_description": "Gojiberry finds warm leads with 10+ intent signals like funding, new roles, events & groups. AI Agents filter by your ICP and run smart outreach campaigns, booking demos automatically while syncing with Slack, HubSpot & Pipedrive.",
"og_image": "https://framerusercontent.com/assets/ZHZj6mcDcU1CtSwGAfg39phWec.png",
"og_url": "https://gojiberry.ai/",
"og_locale": null,
"twitter_card": "summary_large_image",
"twitter_title": "Gojiberry AI - Grow your sales with warm leads & high intent outreach",
"twitter_description": "Gojiberry finds warm leads with 10+ intent signals like funding, new roles, events & groups. AI Agents filter by your ICP and run smart outreach campaigns, booking demos automatically while syncing with Slack, HubSpot & Pipedrive.",
"twitter_site": null,
"twitter_creator": null,
"product_price_amount": null,
"product_price_currency": null,
"product_availability": null,
"product_brand": null,
"product_condition": null
}
From one API call we learn a lot about Gojiberry. They're built on Framer.
Their <h1> is "Find & Contact High-Intent Leads With AI". The description
mentions "10+ intent signals like funding, new roles, events & groups" and
"booking demos automatically". They integrate with Slack, HubSpot, and
Pipedrive.
They use the word "intent" a lot, but what does it mean? Say you sell sales coaching software. Few are straight up going to post "I need sales coaching software". But someone might visit your profile, engage with one of your posts, or their company might post a job opening for 5 new sales reps. In that way you can interact with the lead while the problem is fresh instead of cold-messaging strangers from a list.
The CRM integrations (HubSpot, Pipedrive) confirm who the buyer is: people who already track their sales pipeline in these tools. I checked their blog and 8 in 10 of their posts are about LinkedIn outreach, with comparison posts against tools like Expandi, Dripify, and Lemlist. They're also starting to go after recruiters and founders doing their own outreach, but salespeople reaching out on LinkedIn is clearly the main thing.
All of that from one /seo call and a bit of digging.
This is promising, so I asked Clawie to pull SEO data for all the startup websites:
About 3 minutes later I had all the SEO data:
| Company | Keywords | Title tag | H1 | Meta description |
|---|---|---|---|---|
Gumroad gumroad.com | — | Earn your first dollar online with Gumroad | Go from0 to $1 | Start selling what you know, see what sticks, and get paid. Simple and effective. |
Stan stan.store | — | Stan - Your Creator Store | Meet Your All·in·One Creator Store | — |
easytools easycart.pl | — | Easycart - Sprzedaż produktów cyfrowych i zwiększanie konwersji | Stwórz koszyk doskutecznej sprzedaży online | Zwiększ sprzedaż online dzięki płatnościom jednym kliknięciem, podnieś współczynnik konwersji i sprzedawaj z łatwością na całym świecie! Wypróbuj bez rejestracji i opłat |
Brand On Demand, Inc. supliful.com | — | Private Label Supplements - Leading Dropshipping Supplier | Supliful | Build and launch for free, no inventory needed. | Start your supplement dropshipping business with Supliful. Sell custom-branded beauty, nutrition, and food products under your own brand. |
Stack Influence stackinfluence.com | — | Micro Influencer Marketing Platform Services - Stack Influence | connecting brands toeveryday creators | Stack Influence is the leading micro influencer marketing platform. Run micro influencer marketing campaigns for your ecommerce business. |
Comp AI trycomp.ai | — | Comp AI: AI Compliance Software for SOC 2, HIPAA, GDPR & ISO 27001 | AI that handles compliance for you in hours. | AI compliance automation that gets you audit-ready in hours. The fastest SOC 2, HIPAA, GDPR, and ISO 27001 compliance software. Trusted by 4,000+ companies. 100% money-back guarantee. |
Avenue Ticketing, Inc. avenueticket.com | Avenue Ticketing|Avenue Tickets|Avenue Ticketing|Best Event Ticketing Platform|Event Tickets|Buy Tickets Online|Live Events|Party Events|Club Night Events|Party Tickets Online|Nightlife Events|Exclusive Club Parties|VIP Party Tickets|Book Club Night Tickets|Best Party Events Near Me|Weekend Party Tickets|Buy Club Event Tickets|Top Nightlife Parties | Avenue Ticketing | Events, Nightlife, Fun | Avenue Ticketing - Your Gateway to Amazing Events | Discover and book the best local events, movies, nightlife, and activities. Avenue is the modern ticketing platform for unforgettable experiences. |
TrimRx trimrx.com | — | Personalized Weight Loss Programs That Work | TrimRX | — | Lose weight with TrimRX! Discover tailored weight loss solutions, GLP-1 medications, free delivery, and expert care starting at $199. Take your free assessment today! |
1Capture 1capture.io | saas revenue optimization|trial conversion|payment capture|stripe integration|trial to paid conversion|saas growth|revenue multiplier|trial optimization|payment recovery | 1Capture - Double Your Trial-to-Paid Conversion Without Making Product Changes | — | Double your trial-to-paid conversion without making product changes. Everything you need to boost trial conversion rate as high as 57% using smart payment capture and AI optimization. A Stripe Partner Solution. |
Rezi rezi.ai | — | Free AI Resume Builder Trusted by +4 Million Job Seekers | Free AI Resume Builder.ATS-optimized. Recruiter-ready. | Free AI resume builder trusted by millions of happy job seekers. Create your perfect ATS-friendly resume in minutes with Rezi. Recognized as the best resume builder in 2025 by Forbes. |
HypeProxies hypeproxies.com | — | HypeProxies | Proxy Infrastructure for Serious Operations | The proxy infrastructure serious data teams run on | Reliable proxy infrastructure designed for stable sessions, clean IP reputation, and scalable automation across retail, social, and data operations. |
Kitze kitze.io | — | Kitze - Developer, Entrepreneur & Educator | DeveloperCreatorEducator | Developer, entrepreneur, and educator. I build products, teach others how to ship, and share everything I learn along the way. |
Cometly cometly.com | — | Cometly | Marketing Attribution Software | Smarter Marketing Attribution.Use AI to Turn Data Into Action. | Cometly is the leading marketing attribution software, offering real-time insights into ad performance. Get accurate data, and prove ROI with ease. |
PressWhizz presswhizz.com | — | PressWhizz - The #1 Link Building Marketplace | SEO & Link Building MadeSimple.Effortless.Scalable.Impactful. | Discover the ultimate link building marketplace where quality meets efficiency. Elevate your website's SEO game with our curated network of skilled professionals. Get high-quality backlinks that boost your online presence. Join us today and take your link building strategy to the next level! |
REACT Studios™ reactstudios.com | — | Home - REACT Studios™ | The number one onlinegaming communityplatform | Building the future of digital experiences with innovative solutions and community-driven development. |
Defined Chase definedchase.com | — | Digital Marketing Agency Services | Definedchase.com | Turn your ad spend into measurable profit. We’ve helped clients drive $250M+ –now it’s your turn | Defined Chase: Premier digital marketing agency services, driving brand growth and profitability with over $100M in ad spend managed. Contact us today. |
Shugert Marketing shugert.com.mx | Shopify Experts|Marketing Analytics|eCommerce Solutions|Machine Learning|Custom eCommerce|NY|Barcelona|Mexico | Shugert Marketing | Shopify Experts & Analytics Solutions | Marketing Analytics customized to your business needs | Shugert: Shopify Experts specializing in marketing analytics, custom eCommerce, and machine learning solutions in NY, Barcelona, and Mexico. |
Claw Mart shopclawmart.com | — | Claw Mart | The App Store for AI Assistants | The app store for AI assistants. Pre-built personas and skills from operators who ship with AI every day. Install in minutes, start shipping today. |
Dealsourcr Ltd dealsourcr.com | — | Dealsourcr: Unlock the highest profit property deals instantly | Unlockhighest profit dealsinstantly | Dealsourcr uses the power of AI to unlock the highest ROI property deals instantly. Stop wasting time searching and start closing deals instead. |
PROSP prosp.ai | — | Prosp — Automate LinkedIn Outbound with AI | LinkedIn OutboundWith AI Personalization | AI-Powered LinkedInn automation for agencies and sales teams. Everything you need to find leads and book meetings. Automated an easy. |
SEOBOT seobotai.com | — | SEO Bot - fully autonomous "SEO Robot" with SEO AI agents for Busy Founders | // Powered by AI and GPT agentsSEObot — fully autonomous «SEO Robot» with AI agents forbusy founders| | SEO Bot features - Programmatic SEO - AI internal linking - AI backlinks - Auto keyword research - AI generated blog - Acts like a SEO Robot |
AEO Engine aeoengine.ai | AEO|Answer Engine Optimization|AI SEO|ChatGPT optimization|Google AI visibility|AI search ranking | Best Results-Oriented Answer Engine Optimization, AI SEO Company - AEO Engine | Get Ranked #1 inAI OverviewsGoogle | Own AI search results. AEO Engine helps ambitious brands dominate ChatGPT, Google AI, and Perplexity. 920% average AI traffic growth. Start your free audit. |
Vid.AI vid.ai | AI Video Generator|Faceless Videos|Long-form Videos|YouTube Videos|AI Shorts|Shorts Generator|Video to Shorts|TikTok Shorts|Instagram Reels|YouTube Automation|Faceless YouTube Channel|AI Voice Over|Video Creation|Content Creator Tools | VidAI • AI-Powered Video Generation for Short & Long-Form Content | Pricing | Create faceless videos instantly with AI. Generate YouTube Shorts, TikTok videos, Instagram Reels, and full-length YouTube videos up to 10 minutes. Perfect for content creators and YouTube automation. |
Launch Club launchclub.ai | — | Launch Club | Reddit Agency & Reddit Growth Experts | Launch Club - Reddit Marketing | Reddit marketing agency helping brands grow through strategic content & community engagement. Partner with a trusted Reddit agency to scale visibility and leads. |
MaidsnBlack maidsinblack.com | — | Professional Cleaning Service & Maid Service In Washington DC | — | Reliable and affordable home cleaning and maid service in Washington DC. Get customized house cleaning services from trusted home cleaners. |
Presscart presscart.com | — | Presscart - The Media Marketplace for Daily Media Opportunities | The media marketplace for growing your online visibility and credibility | Wake up to personalized PR opportunities scored by AI. Get published in 1,100+ outlets without agency fees or retainers. |
Salesrobot, INC salesrobot.co | — | #1 Sales Engagement Tool For Cold Outreach | SalesRobot | Message 100s of peopleon LinkedIn and cold email.Every Week. Automatically. | SalesRobot is among the best cloud-based sales Outreach Tools that allow users to run multiple automated cold outreach campaigns on LinkedIn and Email. |
DataExpert / TechCreator dataexpert.io | Master data engineering and AI like a big tech engineer | Join DataExpert.io Academy | DataExpert.io Academy | Master data engineering and AI like a big tech engineer |
Codédex codedex.io | — | Codédex | Start Your Coding Adventure ⋆˙⟡ | — | Codédex is a new way to learn to code for kids and adults alike. Journey through the fantasy land of Python, HTML, CSS, or JavaScript, earn experience points (XP) to unlock new regions, and collect all the badges at your own pace. Start your adventure today. |
Postiz postiz.com | — | Postiz: The All-in-One agentic social media scheduling tool | Your agentic social media scheduling tool | Streamline your social media with Postiz. Schedule posts, analyze performance, and manage all accounts in one place. |
Teachizy teachizy.fr | — | Plateforme de formation en ligne - Teachizy: gérer vos cours | Créez votre première formation en ligneen 1h | Vous cherchez à développer une formation en ligne ? Découvrez Teachizy, l'outil français qui simplifie la digitalisation de votre entreprise. |
HVAKR hvakr.com | — | HVAKR | HVAC Design,Streamlined | Everything a Mechanical Designer needs, in one place. |
BackPedal Ltd backpedal.co | — | BackPedal | Theft Protection & Recovery for Ebikes | Stamp out bike theft | BackPedal is a nationwide provider of theft protection services for ebikes. Using GPS trackers and dedicated recovery teams, BackPedal is the best chance of getting a stolen ebike back, recovering after 9 out of 10 thefts. |
Felix Craft felixcraft.ai | — | Felix Craft — AI That Works | Guides from an AIwith areal job | Guides, tools, and products from Felix Craft — an AI agent with a real job. Currently: How to Hire an AI, a 66-page playbook for giving an AI a real job. |
Roofclaw roofclaw.com | roofing AI|autonomous AI|apple silicon|secure AI|open-source AI|roofing software|AI agent|local AI | RoofClaw | Security Beyond Compromise. Autonomous AI for Roofing. | Your next storm surgeshouldn't break your office. | RoofClaw provides absolutely sovereign, dark-subnet autonomous AI hardware nodes for elite roofing companies. Complete your operations circuit. |
Doors Delivered doorsdelivered.com | — | Best Internal Doors Delivered: Top Interior Doors UK | Home | Discover our selection of internal doors at Doors Delivered. Best Online Door Retailer in the UK. Elevate your home with our online doors expertise. |
Indexsy indexsy.com | — | Indexsy - We Build, Acquire & Scale Digital Assets | We Build, Acquire &Scale Digital Assets | We build, acquire, and scale digital assets with data-driven SEO and growth strategies that increase traffic, revenue, and successful exits. |
React Bits Pro pro.reactbits.dev | React components|Next.js templates|React templates|UI components|React blocks|premium components|web development|React library | React Bits Pro — React UI for Memorable Products | Buildmemorableproductsfaster than ever | Professional React components, templates, and blocks for building modern web applications. Get lifetime access to our premium collection of production-ready code. |
Corsidia corsidia.com | — | Corsidia: i migliori Corsi di ___ a ___ | Trova solo i migliori | Corsidia seleziona solo le scuole, gli enti di formazione e gli insegnanti migliori per aiutarti a confrontare le offerte formative, i prezzi e trovare il corso ideale per te. Fra i consigliati, scegli i corsi di tuo interesse e contatta direttamente gli organizzatori per maggiori informazioni. Su Corsidia.com puoi trovare tutti i tipi di corsi, per privati e aziende, mentre Corsidia.org è riservata ai corsi di formazione finanziati dalle politiche attive per il lavoro. |
LLM Gateway llmgateway.io | — | LLM Gateway - Unified API for Multiple LLM Providers | One API for every LLM. Any model, any provider. | Route, manage, and analyze your LLM requests across multiple providers with a unified API interface. Access OpenAI, Anthropic, Google, and 19+ providers through one API. |
Kortex-Notebooklm kortex-notebooklm.com | — | Kortex - Transform NotebookLM into Your Knowledge Hub | Transform NotebookLMInto Your Knowledge Hub | — |
Lunchbreak lunchbreak.ai | — | Lunchbreak AI | Rewrite, Humanize, and Stay 100% Undetectable | Your Essay Will GetFlagged. Fix It Before Your Professor Sees It. | Make AI content 100% undetectable. Humanize, rewrite, and refine AI-generated text with Lunchbreak AI. Stay ahead of AI detection tools effortlessly. |
STELLA PROXIES stellaproxies.com | — | High-Speed Residential and ISP Proxies | Stella Proxies | Unlock the web with unmatched | Discover high-speed, secure, and reliable proxy solutions with Stella Proxies. Perfect for residential, ISP, sneaker, and ticket proxies. Boost your online performance now! |
OpenClaw Pro openclaw.new | AI assistant|AI bot|Telegram bot|Discord bot|deploy AI|ChatGPT bot|Claude bot|Gemini bot|AI automation|personal AI|no-code AI | ClawDrift — Host OpenClaw in 1 Click | ClawDrift | Deploy OpenClawIn Under 1 Minute | ClawDrift is an independent hosting platform that helps you deploy OpenClaw in 1 click. |
MyCater mycater.fr | — | 🚚 Livraison de vos Traiteurs Éco-Responsables ♻️ | MyCater | Livraison deservices traiteur engagéspour les entreprises | Livraison traiteur en entreprise. Sélectionnez votre traiteur éco responsable préféré, commandez puis réglez en ligne en quelques clics. |
Donely donely.ai | — | Donely - Manage Unlimited OpenClaw Instances from One Dashboard | OpenClaw Hosting ThatScales With You | The multi-instance OpenClaw management platform. Deploy personal, business, and client instances with per-instance access control, unified billing, and volume discounts. Start free. |
Hack2hire hack2hire.com | — | Hack2hire | Real SDE InterviewQuestion Bank | — |
IBERGOUR ibergour.com | jamon ham ibergour hams iberico spanish serrano pata negra guarantee 5j joselito | IberGour: Online shop of 100% guaranteed Spanish jamón ibérico ham | Online shop of 100% guaranteed Spanish jamón ibérico ham | #1 online shop of Spanish jamon. 100% satisfaction guarantee or your money back. 5J Cinco Jotas, Joselito, Bellota Pata Negra Ham. +30,000 customers since 2005. |
LocalRank.so localrank.so | — | The AI-Powered Local SEO Software - LocalRank | The AI-PoweredLocal SEO Software | The all-in-one local SEO tool that helps local SEO agencies scale revenue without the headcount. |
Talefy talefy.ai | — | AI Story Generator - Create Interactive Stories Online | Talefy | Talefy: AI-Powered Interactive Story Game | Discover the best AI story generator to create interactive stories online. Explore interactive story games and generate unique plots with the AI story maker to build your storytelling ideas to life. |
Sherpa mentoriasherpa.com | — | Sherpa | ¿Es posible darle un tratamiento adecuado a tus pacientes si todavía no tienes suficiente experiencia como terapeuta...ni nadie a quien preguntar? | — |
Simple Analytics simpleanalytics.com | — | The privacy-first Google Analytics alternative - Simple Analytics | Theprivacy-firstGoogle Analytics alternative. | Simple Analytics is the privacy-first Google Analytics alternative that is 100% GDPR compliant. Give us a try! |
CartBoss cartboss.io | — | CartBoss - Turn Abandoned Carts into Profit | Double Your Online Sales withSMSCart Reminders | Recover abandoned carts effortlessly with SMS cart reminders. Boost conversions, increase revenue, and improve ROAS using CartBoss's automated SMS campaigns. |
Brevilabs brevilabs.com | — | Human Guided, AI Enhanced | Brevilabs | Human Guided, AI Enhanced | Building a future where humans and AI work together seamlessly. |
BuildMyAgent.io buildmyagent.io | BuildMyAgent|Build My Agent|buildmyagent.io|AI automation|prompt testing|AI agents|automation platform | BuildMyAgent - AI Automation Platform | buildmyagent.io | What agent do you want to create? | ⚡️The #1 AI platform. Deploy AIs in minutes by chatting with AI. +750 Integrations |
ChatDash, LLC chat-dash.com | — | ChatDash | Build & sell AI services in minutes, not monthsBuild&sellAIservicesinminutes,notmonths | — |
uhoh.com uhoh.com | — | uhoh | — | People solving IT problems for people. Affordable, scalable, human-first support. |
VEX Wallet vexwallet.co | — | Remesas desde USA | App para Mandar Dinero – Vex Wallet | Tu billetera digital para enviar y recibir dinero de forma simple y segura. | Envía remesas desde USA de forma rápida y segura. Con Vex Wallet puedes mandar dinero, manda saldo y realizar envíos internacionales desde una sola app. |
Draft AI getdraft.io | ai content generator|social media content|carousel maker|ai writing assistant|content creation tool|instagram carousel|linkedin posts|draft ai | Content Generator for Social Media: Draft AI | Your zero-effortcontent buddy. | Create posts, scripts, and carousels in minutes with Draft AI. Stop spending hours on content. Get ready-to-use templates, fonts, colors, and export stunning carousel images. |
Supergrow supergrow.ai | — | Supergrow — Turn Your Team's Expertise into LinkedIn Influence | Turn expertise intoinfluenceon LinkedIn | AI-led interviews capture what your experts know. Governed workflows keep everyone aligned. Analytics prove the ROI. Build executive visibility that drives pipeline. |
AE-intelligence humanizeaitext.ai | — | Humanize AI Text - Guaranteed 100% Human Score | Free AI Humanizer | Humanize AI Text With The #1 Most Trusted AI Humanizer – Free & Unlimited Words | Effortlessly humanize AI text with the best ChatGPT humanizer! Convert AI-generated content into natural, engaging writing that's 100% undetectable. |
ConvertLabs convertlabs.io | — | ConvertLabs - Booking Software & Marketing Tools | Start your Service Business with ConvertLabs | — |
Calendesk calendesk.com | — | Appointment Scheduling Software for Business | Calendesk | Appointment scheduling software | Discover Calendesk's all-in-one appointment scheduling software. Automate bookings, payments, and client management effortlessly. Start your free trial today! |
notis.ai notis.ai | — | Your AI Intern, One Message Away | Notis | YourAI Intern | Dump the busy work. Work like a team of ten. Trusted by 1,000+ founders. Try it for free! |
Liinks liinks.co | — | Liinks | One link for everything | One link foreverything | Gather your socials, music, videos, and more on a beautiful link-in-bio page. |
StoryShort storyshort.ai | — | StoryShort AI - AI Video Generator | Createviral faceless videoson Auto-Pilot. | Create viral faceless videos for Tiktok & Youtube Short with StoryShort AI. Post daily videos on your channels without lifting a finger. |
Sleek sleek.design | — | Sleek: AI Mobile App Designer | Create App Mockups in Minutes | Design mobile appsin minutes | Turn your ideas into beautiful mobile app mockups instantly with AI. No designer needed. Generate iOS and Android app designs for free today. |
Fiddl.art fiddl.art | — | Fiddl.art — Discover Something New | Fiddl.art | Create AI art in seconds. Share it with the world and earn points whenever others unlock or engage with your creations. |
WaLead AI walead.ai | — | 10x LinkedIn Sales with WaLead AI | Free 14-Day Trial | The Safest LinkedIn Automation Tool(yes, with AI) | Boost LinkedIn outreach with AI-powered automation. Secure, scalable, and personalized messaging. Try WaLead free for 14 days! ✅ |
POST BRIDGE post-bridge.com | post bridge | post bridge - social media scheduling for everyone | Post to all your social accounts from one dashboard | Post content to multiple social media platforms at the same time, all-in one place. Cross posting made easy. |
setupclaw setupclaw.com | OpenClaw setup|OpenClaw deployment|AI assistant enterprise|managed AI service|OpenClaw security hardening|executive AI assistant|San Francisco|remote setup|OpenClaw managed care | SetupClaw — White-Glove OpenClaw Deployment for Founders & Exec Teams | SetupClaw | Professional OpenClaw deployment and managed care for companies with 4–50 employees. Remote worldwide or in-person in SF Bay Area. Security hardening, ongoing monitoring, and support. |
Capgo capgo.app | — | Capgo - Instant updates for CapacitorJS Apps | Instant updates for your<CapacitorJS app/> | Open-source Appflow alternative for Capacitor apps: live updates, native build delivery, release channels, real-time logs, and analytics in one platform |
MedPilot medpilothq.com | healthcare automation|patient booking system|medical crm|dental clinic software|ai receptionist|ai assistant for doctors | MedPilot - AI-Powered Healthcare Automation & Patient Booking System | AI thatbookspatientsandgrowsyour practice. | Transform your medical practice with AI-powered automation. Capture more leads, automate patient communications, and increase bookings by 30%. Best CRM for dentists and medical practices. |
SuperX superx.so | — | SuperX - Best Audience Growth Tool for X Creators | Grow faster on 𝕏 | Grow your X faster with personalized content inspiration, and actionable analytics - the smartest AI-powered tool to write authentic posts, schedule, get followers, and monetize your audience. |
Brainrot.mov brainrot.mov | — | Brainrot.mov | The UltimateAI Content Engine | Create viral brainrot videos with AI |
Conductor conductor.is | — | QuickBooks Desktop API | Conductor | The best QuickBooks Desktop/Enterprise APIon the planet | QuickBooks Desktop API made simple. Connect to QuickBooks Desktop or Enterprise in minutes with Conductor's typed Node.js and Python SDKs and REST API. |
SEO STACK seo-stack.io | — | SEO Stack | AI SEO Toolset & GSC Replacement | Supercharge YourSEO and PPC PerformancewithAI | SEO Stack is a professional SEO SaaS tool offering a replacement to Google Search Console along with SEO tools to help you drive stronger rankings. |
Karma karmabot.chat | — | Karma for Web – Employee Recognition Platform | Turn recognition into performance | High-performance teams on chats. Set goals, track performance and reward excellence. Performance reports included. |
Low Content AI lowcontent.ai | Low Content AI|Low Content Books|AI Book Creator|KDP Tools|Journal Design|Activity Books | Low Content AI - Create Low-Content Books with AI-Powered Tools for KDP | Effortlessly CreateLow-Content Bookswith AI | Low Content AI offers an easy-to-use platform to create low-content books such as journals, planners, and activity books. Use our AI-driven tools for custom text, images, and printable games, perfect for publishing on Kindle Direct Publishing (KDP). Start creating today! |
Parakeet Chat parakeet.chat | — | Parakeet Chat - Talk with your loved ones, Connect them to the world | Talk with your loved ones,Connect them to the world | Empowering your incarcerated loved ones to stay connected with you and the world via Text and Voice Messages, AI chatbots, SMS, and more. |
Vidgenie.ai vidgenie.ai | — | Vidgenie.ai | — | — |
SOVEREIGN LEADS LIMITED theleadguy.online | — | The Lead Guy | Exclusive Lead Generation For Trades & Construction Companies | The Lead Guy | — |
Michael Veail theleadguy.online | — | The Lead Guy | Exclusive Lead Generation For Trades & Construction Companies | The Lead Guy | — |
Replayed LTD replayed.co | hire video editor|hire a youtube video editor|how to hire a video editor|gaming video editor for hire|video editors for youtube for hire|freelance video editor hire|hire freelance video editor|cheap video editors for hire|how to hire a youtube video editor|companies that hire film and video editors|hire a video editor for youtube|how much does it cost to hire a video editor|how much to hire a video editor|professional video editors for hire|video editor for hire near me|video editor to hire|video editors for hire online|cheap video editor for hire|companies that hire video editors|fast video editor for hire|hire a cheap video editor|hire a video editor nyc|hire a video editor reddit|hire a video editor uk|hire a video graphics editor|hire an video editor|hire graphic designer and video editor|hire video editor london|hire video editor los angeles|hire video editor to create video compilations|hire video editor to do recap video|how to get hired as a video editor youtube|how to hire a freelance video editor|https www.upwork.com hire video-editors|i want to hire a video editor|i want to hire video editor|quality video editors for hire|reddit video editors for hire|video editor for hire los angeles|video editor for hire uk|video editor for hire youtube|video editors for hire for youtube|vidiq|coppa|youtube monetization|support a creator|what is coppa|vidiq extension|youtube monetisation|how to get more views on youtube | Replayed - Hire a YouTube Video Editing Team | where creators hiredream editors | Hire vetted video editors in seconds by scanning your YouTube channel style for free |
RankAI rankai.ai | RankAI - AI SEO/GEO Agency | RankAI - AI SEO/GEO Agency | RankAIAI SEO/GEO Agency | RankAI is the worlds first AI-native Agency for organic growth. It handles everything autonomously to drive you millions of visitors from Google & AI Search like ChatGPT. In other words, RankAI optimizes for both SEO & GEO. |
DataFast datafa.st | DataFast | DataFast | Find out which marketing channels drive your revenue | Revenue-first analytics | DataFast is the analytics tool for entrepreneurs. From first click to customer, it helps you understand where the money is and how to increase your revenue without bombarding you with data. |
Pasul.ro pasul.ro | terapeut|discovery call|terapie|psiholog|consiliere psihologică|sănătate mintală|prima terapie|terapeut potrivit|matching terapeut|sesiune gratuită | Pasul - Te conectăm cu terapeutul perfect pentru tine | Găsește terapeutulpotrivitpentru tine.Fără stres și fără risc financiar. | Ai parte de un Discovery Call de 15 minute gratuit cu viitorul tău terapeut |
Ari Horesh entermedschool.com | — | EnterMedSchool | Your Path toMedical SchoolStartsHere✦ | We help aspiring medical students find the right fit for their career goals. Browse medical schools, compare programs, and study for admission exams. |
AI MONEY GROUP aipersonamethod.com | — | AI Persona Method | Certified AI Consultants - AI Persona Method | Use theAI Persona Methodand transform your marketing & support in just minutes. | Learn the AI Persona Method in your business. Our training and Certified AI Consultants help you leverage AI for marketing & support fast! |
AI Labs tradenote.io | — | TradeNote | Theultimatetoolforbacktestingandoptimizingtradingstrategies | TradeNote is the ultimate tool for backtesting and optimizing trading strategies. |
Advise.so advise.so | — | Advise.so - The Marketing Community That's Years Ahead | The Marketing Community That’s2+ Years Ahead | 500+ vetted marketers sharing Partnership SEO, Rank & Rent, Parasite tactics, and GEO/AEO strategies you won't find anywhere else. No beginners. No fluff. Just what's working right now. |
Saaspa.ge saaspa.ge | product launch|SaaS|tech products|startup|maker community|daily launches|product discovery|tech startup|indie hackers|product hunt alternative|product launch|SaaS|tech products|startup|maker community|daily launches|product discovery|tech startup|indie hackers|product hunt alternative | Saaspa.ge - The Best New Products, Every Day | Hey founders, I'm Pim 👋 | Discover and launch amazing tech products. Join thousands of makers launching their SaaS, apps, and tools. Daily product launches with real user feedback and community support. |
Evergreen Support, LLC evergreensupport.co | — | Evergreen: The Human Customer Support Agency for SaaS & Ecomm | US-Based Customer Support for Your Online Business | Stop drowning in support tickets. Evergreen is a US-based customer support agency providing fractional teams for online businesses. Real humans, real results. Book a call. |
Plutio (Super Work AI) plutio.com | — | Plutio - One app to run, grow, and automate your business | One app torun,grow, andautomateyour business | Powered by Super Work AI - work with clients, manage projects, build forms, take bookings, send proposals, get paid, and automate your workflow - all in one app. |
Reddit Agency redditagency.com | — | Reddit Marketing Agency | Rank on AI & Google | We Generate $50,000+ in New Revenue From Reddit in 3 Months — Or You Don't Pay. | We Generate $50,000+ in New Revenue From Reddit in 3 Months — Or You Don’t Pay. |
Orel Zilberman, LLC substack.com/@orelzilberman | — | Orel | Substack | — | I am a full-time solopreneur running a 6 figures SaaS for busy Substack Creator (writestack.io). Subscribe to watch my journey and learn as I do. |
Tree Nerd Academy treenerdacademy.com | ISA exam prep|ISA Certified Arborist exam|arborist certification|ISA practice questions|arborist study plan | ISA Exam Prep Course | Tree Nerd Academy | Pass the ISA Certified Arborist Exam -or get your money back. | Pass the ISA Certified Arborist Exam with expert-led lessons, practice exams, flashcards, and a structured study system. |
ForYouGaming Inc. foryougaming.com | — | ForYouGaming.com | Browse All Categories | — |
Tailride tailride.so | Tailride | Home | Tailride - Automated Invoice Processing | AI accounting automation that saves youhundreds of hours. | Automate invoice collection and data entry with Tailride. Extract invoices from email and web portals automatically. |
Yeema LTD yeema.co | — | yeema.co | Design Partner for Startups | Designpartnerforstartupsmovingfast. | We help founders turn messy ideas into products people actually use. Product, brand, and web design. One team. Zero friction. |
Yaak yaak.app | — | Yaak – The API client you'll actually enjoy | TheAPI clientyou'll actuallyenjoy | Yaak is a fast, secure, and offline API client with an agent-friendly CLI |
AutoContent API autocontentapi.com | NotebookLM API|notebook lm api|podcast generation API|AI podcast generator|automated podcasting|multilanguage podcasts|custom voice podcasts|AI audio content|podcast API|NotebookLM alternative|AI voices|content automation|quizzes|quiz generation|study guides|FAQ generation|timeline generation|research papers audio|meeting notes podcasts | AI Podcast Generator | NotebookLM API Alternative | AutoContent API | Transform your content intoExplainer Videos | Professional AI podcast generator API with multilanguage support, custom voices, and automated content creation. NotebookLM alternative for developers. Transform documents into engaging audio content with advanced podcast controls, quiz generation, FAQ generation, and study guides. |
Altitude Cleaning Crew altitudecleaningcrew.com | — | House Cleaning Services in Reno, Nevada | Altitude Cleaning Crew | House Cleaning Services in Reno, Nevada | Looking for house cleaning services in Reno, NV? We specialize in deep, move-out & recurring cleaning. Get a free quote from trusted local pros today. |
Dotmarket.eu - Achat / vente de business web dotmarket.eu | — | Dotmarket | Marketplace M&A digital : E-commerce, SaaS, Contenu, Agences web | Votre plateforme de confiance pour acheter un business digitalrentable et audité. | Achetez ou vendez un business digital fiable et rentable : projets e-commerce, SaaS, agences & médias validés, valorisés et accompagnés par des experts. 1ere place de marché du M&A digital structuré en France. |
Digitiz.fr digitiz.fr | — | Digitiz - Trouvez les bonnes solutions pour réussir sur le web | Faitesdécollervotre business avec les meilleurs outils | Faites décoller votre projet web ! Digitiz vous aide à choisir les meilleures solutions pour réussir sur le web |
Vibe3D AI vibe3d.ai | — | AI Rendering | Sketch to 3D Render AI | Vibe3D | Photorealistic AI Rendersin seconds | Best AI Interior Design and Architectural 3D Rendering software. Instantly create realistic 3D renders from SketchUp, 3ds Max, Revit, Archicad, Rhino & more. |
Virlo virlo.ai | virlo|virlo ai|virlo.ai|social media analytics platform|TikTok analytics tool|YouTube Shorts analytics|Instagram Reels analytics|viral content tracking|creator analytics|AI content insights|trend analysis platform | Virlo - Short-Form Video Analytics | TikTok, YouTube & Reels | Stop guessing what worksin short-form.Start tracking it. | Short-form video analytics for TikTok, Reels, and YouTube Shorts. Track viral content, monitor creators, and spot what's trending in your niche. Free tools, 21K+ creators tracked daily. |
Analytics Mates analyticsmates.com | — | Get FREE Consultation from GA4 Experts - Analytics Mates ⛵ | Struggling with Google Analytics 4?Get Instant HelpfromAnalytics Experts | Expert Google Analytics 4 solutions for businesses. Enhance reporting, insights, and ROI. Explore Analytics Mates services and contact today! |
Synta synta.io | n8n|workflow automation|AI workflows|n8n AI builder|workflow debugging | Synta - AI Agent to help build and edit n8n workflows with AI | Build n8n workflowswith AI | Build and edit n8n workflows with AI using Synta MCP, designed to help teams create, refine, and manage n8n automations faster. |
Buzzly AI heybuzzly.ai | AI marketing|ad creation|multi-channel marketing|advertising platform|marketing automation|social media ads|Google ads|Facebook ads | Buzzly - AI Multi-Channel Marketing Platform | Createwinningadsinseconds | Your AI marketing team: on-brand creatives, instant launch, real-time wins across Meta, Google, and TikTok Ads. |
Book The Move bookthemove.com | — | Book The Move — Exclusive Leads for Moving Companies | OneMoverPerCounty.EveryLeadIsYours. | We scan real estate listings for furniture and send personalized emails to homeowners before they search for movers. One mover per county. Get exclusive leads starting at $97/month. |
Tribe Social tribesocial.io | — | Create Your Own Custom Community App | Tribe Social | Imagine Saying, “Download Our App” | Explore the premium alternative to Facebook Private Groups with Tribe Social's custom app platform. Gain full control over your tech stack and engage your audience with a secure, intuitive app. Book a demo today! |
ChatSEO chatseo.app | — | ChatSEO: The best SEO chatbot in 2026 🏆 | Find & prioritize yournext SEO winsby chatting with your data. | ChatSEO is the best SEO chatbot to use this year. ☝️ Click here to test it for free! |
Mig mig.lemonsqueezy.com | — | Mig — Supercharge your productivity | Supercharge yourproductivity | We provide the tools to help you get things done. |
LinkPost linkpost.gg | — | LinkPost | Create viral LinkedIn content the scientific way | — |
Czat.ai czat.ai | — | Prawdziwa sztuczna inteligencja: jeden chat GPT, wielu rozmówców. - Czat.ai | — | Czat.ai – chat z AI. Zarządzanie czasem i obowiązkami. Finanse i oszczędzanie. Edukacja i rozwój dzieci. Zdrowie i dobre samopoczucie. Organizacja przestrzeni domowej. Relacje i życie rodzinne. Praca i rozwój zawodowy. Gotowanie i planowanie posiłków. Rozwój osobisty i kreatywność. Komunikacja i relacje interpersonalne. |
Hirevire hirevire.com | video screening|recruitment|hiring|video interviews|candidate screening | Hirevire | Video Screening Software for Faster Hiring | Simplest Way to Screen Candidates | Screen 3x more candidates in half the time with one-way video interviews. The simplest way to screen candidates. |
Lancer.app lancer.app | Upwork automation|AI freelancing|Upwork proposals|freelancer tools|job bidding automation|Upwork AI agent|freelance productivity|automated outreach | Lancer - Upwork AI Agent | Win More Jobs Automatically | Land Upwork jobs 24/7Without The Grind. | Stop chasing work and start winning it. Lancer is an AI agent that finds perfect Upwork jobs and submits personalized proposals automatically. Trusted by 1,247+ successful professionals. |
OVER THE PLANET overtheplanet.com | vacation packages 2026|all-inclusive resorts|hotels|travel deals|2026 vacations|trending destinations|travel experiences|over the planet|affordable accommodations|unique activities|en-US | All Inclusive Vacation Packages, Hotels, Unforgettable Experiences in 2026 | Over The Planet | Over The Planet | Not sure where to go? Perfect. | Find unique vacation packages with affordable accommodations and unforgettable experiences with Over The Planet in 2026! Choose from a wide range of hotel stays and unique activities! |
Bookedin bookedin.ai | — | BookedIn - Convert leads into meetings for your clients | NeverChase LeadsAgain | BookedIn automatically reaches out and nurtures leads via Phone, SMS, Whatsapp, Email, and Social Media DMs and turns them into potential customers - under your brand. |
FindClout findclout.com | — | FindClout | 1M Views for $200 | Meme Page Advertising | Get1 Million ViewsFor Only $200. | Reach the young adult internet for 40x less than Meta Ads. $0.20 CPM on viral meme content. |
Rendler Studio Inc. rendlerstudio.com | — | 3D Rendering Services | Architectural Visualization Company | 3D Rendering Services | Professional 3D Rendering Company offering architectural visualization for residential, commercial, interior & exterior projects ✔️ Get a quote in 24h ✔️ We deliver high-quality 3D rendering services tailored to your design needs |
BlogToPin blogtopin.com | — | BlogToPin - Best Pinterest Automation Tool | BlogToPin | Best Pinterest Automation Tool | BlogToPin is the best Pinterest automation tool for turning blog posts into eye-catching pins effortlessly. Automate your pin creation and scheduling |
QR Code AI qrcode-ai.com | — | AI QR Code Generator - Create Free QR in 2025 | Best Free QR Code Generator | Create Free Custom QR Codes with logo, color background and other shape. Artistic QR Code Generator. Download & track scans online! |
*** OF PROMPT OÜ godofprompt.ai | — | God of Prompt - Best AI Prompts for ChatGPT, Gemini, Claude, & Midjourney AI | AI Superpowers | Unlock the Best AI Prompts for ChatGPT, Claude, Midjourney & Gemini - 30,000+ Best AI Prompts, AI Guides & Toolkits to Streamline Your Workflow in Marketing, SEO, No-Code Automation, Productivity, and more. |
Aymo AI aymo.ai | — | All-in-One AI Platform for Teams | Aymo AI | All-in-One AI Platform with All Leading AI Models | Aymo AI is an all-in-one AI platform for teams. Access GPT-5, Claude, Gemini, DeepSeek, Grok, and more in a single, private, and secure workspace built for collaboration. Brainstorm ideas, refine responses, and share results instantly. Every plan includes team collaboration at no extra cost, making it the most efficient multi-model AI platform. |
DIRECT AI directai.app | — | Direct AI | CreateYouTubeVideos inOne Click | Your personal AI Youtube Director |
Apiframe apiframe.ai | — | Apiframe - One API to Access Multiple AI Media Models | The Unified API for AI Media Generation | Access and automate multiple AI media models (images, video, audio) from one unified API. Generate with Midjourney, Flux, Runway, Suno, and more. |
Private Location Intelligence API platform example.com | — | Example Domain | Example Domain | — |
SetSmart setsmart.io | AI setting|AI setter|ai setting|ai setter|artificial intelligence setting|automated setting|setting automation|qualified calls|whatsapp|instagram|infopreneur|coach|training|automation|revenue | SetSmart | #1 AI Setting Tool - Double Your Qualified Calls with AI Setter | The #1 AI setter forConsultants | SetSmart.io: The #1 AI setting solution that automates lead qualification and appointment booking 24/7 on WhatsApp and Instagram. AI setter trusted by 500+ coaches. +34% qualified calls. |
ClaudeKit claudekit.cc | Claude Code|AI development|starter kit|boilerplate|Next.js|React|TypeScript|production-ready | ClaudeKit - AI Development & Marketing Teams | Ship Faster WithAI Dev Teams | Production-ready AI subagents, workflows, and integrations for software development and growth marketing. Built on Claude Code. |
Esferas.io esferas.io | — | Esferas - LinkedIn Automation That Works | Grow Your Network,Land Your Dream Job | Connect with decision makers, automate your outreach, and generate quality leads on LinkedIn - all while staying compliant with LinkedIn's policies. |
RTMP.IN rtmp.in | — | Live stream on Instagram from your computer | Go Live on Instagram now! | Go live on Instagram from your PC or Mac. Stream on Instagram from your computer using any streaming software or service. Restream any Youtube video in HD, invite guests, and preview your stream in your browser. Safe and secure platform with 2FA system. Try it now! |
SMMDealFinder.com smmdealfinder.com | — | SMM Deal Finder — Find & Close More SMM Clients with AI | SMM Deal Finder | SMM Deal Finder helps social media marketing agencies find, qualify, and close new clients faster with AI-powered tools like Deal Finder, Niche Finder, and automated outreach — all in one platform. |
Prymatica prymatica.com | — | Prymatica - Free B2B Lead Generation with Cold Email Outreach | Theeasiestway to meet your ideal clients. | Prymatica offers a free service to set up a scalable, optimized infrastructure for your cold email outreach campaigns. |
Data Bloo databloo.com | — | Looker Studio Report Templates in Minutes - Data Bloo | Anyone can create great reports withData Bloo | Google Looker Studio Templates to help you analyze, optimize and grow your online business. Select a marketing dashboard and speed up your reporting today. |
ToolScale toolscale.io | — | ToolScale | All-in-One Access to 40+ Premium AI Tools | 40+ Premium AI Toolsin a single subscription | Welcome to ToolScale – the ultimate all-in-one platform giving you unlimited access to top-tier AI, e-commerce, design, and content creation tools for one low monthly price. Boost your projects and scale faster. |
DM Champ dmchamp.com | — | DM Champ | AI So Good It Feels ILLEGAL | ThisAIJustCollecteda$1,000Depositona$50,000Deal. | AI so good it feels illegal. Watch it collect a $1,000 deposit on a $40,000 treatment. White-label it, sell it to any business, charge them monthly. Launch your AI sales agent for free. |
SideQuest - B2C Finance SaaS joinsidequest.com | focus groups|user studies|paid surveys|earn money online|market research|paid studies | SideQuest - Earn Thousands of Dollars from Studies | — | Get paid for participating in user studies and focus groups. Browse hundreds of paid opportunities and start earning rewards today. |
Yakkr Growth yakkrgrowth.com | streamer growth platform|twitch growth tools|kick streaming tools|AI copilot for streamers|stream analytics|viewer insights|content creation for streamers|streaming collaboration|yakkr growth|grow your stream | Yakkr Growth | All-in-One Streamer Growth Platform — AI Copilot, Content Tools & Analytics | Get more viewersand take your stream to the next level | Grow your stream with Yakkr — the all-in-one platform with AI copilot, content creation, viewer analytics, collaboration tools, and expert growth strategies for Twitch and Kick streamers. |
Cure My Swing shop.curemyswing.com | — | Cure My Swing | — | Welcome to Cure My Swing, your ultimate online resource for all things golf! Whether you're a beginner looking to learn the fundamentals or a seasoned player striving to refine your skills, our goal is to assist you in achieving your golfing goals an... |
Superbullet, LLC superbulletstudios.com | Superbullet Studios|Roblox|game development|game studio | Superbullet Studios | Fastest Roblox Game Development Studio | SUPERBULLET STUDIOS | Superbullet Studios - Growing and fastest Roblox game development studio. |
Nordgard nordgard.nl | coworking groningen|flexwerkplek groningen|kantoorruimte groningen|werkplek huren groningen|vergaderruimte groningen|ondernemers groningen|startup groningen|zzp werkplek|flexibele werkplek|coworking space|business center groningen|shared office groningen|freelancer werkplek|creative workspace groningen|networking groningen|business community|hot desk groningen|dedicated desk groningen | Nordgard - Coworking Space in Groningen | Flexibele Werkplekken | Grab a seat, this is your window of opportunity | Ontdek Nordgard, dé coworking space in Groningen voor ondernemers en professionals. Flexibele werkplekken, vergaderruimtes en een bruisende community in het hart van de stad. |
SyncForge trysyncforge.xyz | music licensing|sync licensing|music briefs|split sheets|music contracts|escrow payments|music admin | SyncForge - Tools for Working Musicians | Toolsfor Working Musicians | Submit to briefs, generate licensing paperwork, and manage payouts via escrow. Built for singer-songwriters who need admin efficiency. |
Sandimax sandimax.com | Sandimax|Sandimax Team|software development|indie developers|digital products|design-driven apps|creative tools|thoughtful UX|minimalist software | Sandimax — Thoughtfully Crafted Software | Apps by Sandimax | Sandimax Team builds elegant, high-performance software with a focus on design, performance, and the little details that matter. |
PipeLime pipelime.ai | — | PipeLime - From Leads to Deals: AI Sales Funnel Automation | AI Agentsfor Outbound Sales | Hate cold emails? Let PipeLime automatically collect high-quality leads and drive them through the sales funnel, so you can contact your leads when they are ready to buy your product or service. |
BDM Business benasleo.com | — | Benas Leonavicius - SEO Expert & Entrepreneur | Hey, I am Benas 👋 | SEO expert with over 10 years of experience. I also build various projects on the side. |
Prototipal prototipal.com | — | PrototipalAPI - Prototipal API Platform | — | Connect and automate your workflow with powerful API integrations |
Zero G zerogtrading.com | — | Zero-G Trading | Advanced Market Algorithms & Trading Tools | Trade Smarter.Not More. | Professional trading algorithms for options and NQ futures. Helios for SPX/QQQ/SPY options signals, Nebula for automated NQ futures trading. Verified results, full transparency. |
ChatEDU Inc. chatedu.io | AI education|study tools|practice questions|chatbot|study guides|student learning|educational technology|AI tutoring | ChatEDU - AI Tools for Students | AI Tools for Students | Dynamic practice questions, citation-based chatbots, interactive study guides, and more! Learn anything, anywhere, anytime with AI-powered educational tools. |
Enquiry Genie enquirygenie.ai | airbnb listing optimization tools|airbnb search optimization|how to increase airbnb bookings|airbnb listing optimization|airbnb price optimization|improve airbnb search ranking|optimize airbnb listing|analytics airbnb|airbnb seo|airbnb pricing tool|airbnb research tools|how to get more bookings on airbnb|increase airbnb bookings | Airbnb Listing Optimization Tools | Search Ranking & Booking Analytics | Make More Money From YourAirbnb listings | Track Airbnb search rankings, test price optimization, and increase bookings with data-driven analytics. Find what's broken in 48 hours. Try free. |
Marea Alcalina mareaalcalina.com | catalogo digital|catálogo digital|pedidos por WhatsApp|menú digital|catálogo online|catálogo con pedidos | Catálogo Digital con Pedidos por WhatsApp | Marea Alcalina | Crea Catálogos Digitales Sin Complicaciones | Crea tu catálogo o menú digital profesional con pedidos por WhatsApp, pagos con Stripe y PayPal, y herramientas de IA. La plataforma de catálogos digitales #1 en Latinoamérica. |
UX Magic Inc. uxmagic.ai | — | AI UI Design Generator - Figma-Ready in Seconds | UXMagic | GenerateFigma ReadyUI Designs with AI | Turn any idea into pixel-perfect, Figma-ready UI designs - text, screenshots, or references. Trusted by 50,000+ designers. Try free. |
Kassenmeister | AK Software GmbH kassenmeister.de | — | Kassensystem mit TSE (Cloud + lokal) Windows Android | Kassensoftware Kasse | Kassieren, Bezahlen, Ticketing, Verwalten, Wiegen. | Kassenmeister Kassensysteme für Gastronomie & Handel: TSE/GoBD, Zahlungen, Kassenbuch, DATEV, Tickets & Onlinebestellung. Angebot anfordern. |
CodeFast codefa.st | CodeFast | CodeFast | Learn to code in weeks, not months. | Learn to codein weeks,not months | CodeFast is the best coding course to learn how to turn your idea into an online business, fast. |
Pitchlo pitchlo.com | ugc creator marketplace|ugc jobs|brand deals for creators|ugc platform|ugc creator jobs|find ugc creators | Pitchlo | UGC Creator Marketplace — Brand Deals & Paid Jobs | Find UGC Jobs.Pitch Brands.Get Paid | The UGC creator marketplace for influencers and UGC creators. Browse paid UGC jobs daily, pitch 100K+ brands with AI, and land deals on autopilot. |
Rybbit rybbit.com | web analytics|privacy analytics|open source analytics|Google Analytics alternative|website tracking|self-hosted analytics | Rybbit - Cookieless Google Analytics Replacement | Rybbit | The Modern Google Analytics Replacement | Next-gen, open source, lightweight, cookieless web & product analytics for everyone — GDPR/CCPA compliant. |
Faceless, LLC faceless.so | faceless video generator|ai video maker|youtube automation|tiktok video creator|reddit story videos|text to video|viral shorts generator|faceless youtube channel | Faceless.so - AI Faceless Video Generator | Create Viral Videos in Minutes | Build a ViralFaceless Channel | All-in-One tool to grow your faceless channel. Generate niche videos with AI from custom prompts, Reddit posts, and blogs. Auto-post to YouTube, TikTok, Instagram & 4 more platforms. |
Coral coral.inc | — | Coral — Deploy 24/7 OpenClaw AI Employees | Deploy OpenClaw in minutes.Your AI employeenever stops working. | Deploy OpenClaw AI agents that run operations while you run your company. Secure isolated sandboxes, real-time monitoring, and integrations with Slack, Discord, WhatsApp, Google Workspace, and more. |
ShipFast shipfa.st | ShipFast|NextJS boilerplate|NextJS starter|NextJS template|NextJS|ReactJS | Launch Your Startup in Days, Not Weeks | ShipFast | Ship your startupin days,not weeks | The NextJS boilerplate with all the stuff you need to get your product in front of customers. From idea to production in 5 minutes. |
AppAlchemy appalchemy.ai | — | App Alchemy | Design apps in seconds | Design beautiful mobile apps with AI |
StoryHero storyhero.gg | — | StoryHero: Turn long videos into viral clips in minutes | Turn long videos intoviral clipsin minutes | Automatically detect, caption, and publish your best moments—no TikTok editor, no burnout, hundreds of hours saved. |
Jake Marine repvision.app | sales operations|EOD reports|sales KPIs|commission tracking|sales dashboard|team management | RepVision - Sales Team Operating System | Five Tools. Three Spreadsheets.Zero Single Source of Truth. | The all-in-one platform to track EOD reports, KPIs, commissions, and forecasts for remote sales teams. |
Produktstudio.ai produktstudio.ai | KI Produktfotos|AI Product Photography|E-Commerce Marketing|Produktvideos|Social Media Automation|Brand Marketing|AI Content Generation|Produktfotografie | KI Produktfotos, Videos & Marketing Content | Produktstudio.ai | KI Produktfotos, Videos & Marketing für E-Commerce | Produktstudio.ai | Dein Produkt-Marketing, auf Autopilot. Generiere Produktfotos, Videos, Social Media Content & Ads in deiner Brand Identity. In Minuten statt Tagen. |
EverFlame Design everflamedesign.com | — | EverFlame Design | We design/build apps, sites & brands | EverFlame Studio is a dynamic UI/UX and graphic design studio specializing in designing and developing world-class digital experiences. |
ZdjecieAI.pl zdjecieai.pl | ai zdjęcia|zdjęcie ai|sztuczna inteligencja obrazy|generator obrazów ai | Najlepszy Generator - Zdjęcie AI z Twoją Twarzą | Zdjęcie AI z Twoją Twarzą | Generuj fotorealistyczne zdjęcia AI ze sztuczną inteligencją. Zrób oszałamiające zdjęcia z pomocą fotografa AI! Bez wychodzenia z domu. Stwórz własny model AI i otrzymuj DARMOWE zdjęcia. |
Catalister catalister.com | — | Catalister - AI Product Research & Listing Expert | Get Your First Sale10x Faster | — |
GenPPT genppt.com | — | GenPPT - Best AI Presentation Maker & Slide Creator | CreatePresentationsinminutes, not hours | GenPPT is an AI presentation maker & slide creator that creates ready-to-use PowerPoint decks in seconds. Enter a topic and generate professional slides instantly. |
StartClaw startclaw.com | OpenClaw|StartClaw|AI agents|AI automation|AI assistant|WhatsApp bot|AI hosting|cloud hosting|Telegram bot|managed hosting|no-code AI|AI employees|chatbot platform | StartClaw | Run OpenClaw in the Cloud in Seconds | AI employees that run your business.AIemployeesthatrunyourbusiness. | Deploy your OpenClaw AI agents instantly. Connect to WhatsApp, Telegram, and more. No servers to manage. Just your AI, running 24/7. |
MapPack ToolBox mappacktoolbox.com | local SEO|map pack|Google Maps ranking|SEO tools|meta tag analyzer|keyword research | MapPack Toolbox - Local SEO Tools for Map Pack Domination | Finally.EverythinginOnePlac | A credit-based toolbox for local SEO professionals. Analyze, optimize, and track your way to the top of the Google Map Pack with powerful SEO tools. |
The Brazil Girl thebrazilgirl.com | — | The Brazil Girl | master portuguese to | Learn Portuguese with The Brazil Girl. Make every moment count—master Portuguese faster and enjoy the journey along the way. |
Numbers Game Limited numbersgame.uk | — | Numbers Game | Football Stats Made Easy | AIFootball Predictions madeSmarter | Glanceable football stats and AI powered predictions for over 50 competitions. Make better bets in 2 minutes. |
Fidelatoo fidelatoo.fr | — | Créer des cartes de fidélité avec Fidelatoo | La fidélité est uncadeaulevier de rentabilité | L'application mobile Fidelatoo permet aux commerçants de créer des cartes de fidélité en quelques clics pour leurs clients. Disponible sur iOS et Android. |
Mirra mirra.my | AI 마케팅|AI 콘텐츠 제작|카드뉴스 자동 생성|숏폼 자동 생성|블로그 자동화|SNS 마케팅|SNS 댓글 관리|DM 자동화|소셜미디어 자동화|AI 콘텐츠 생성|마케팅 자동화 툴|AI 마케팅 파트너|콘텐츠 마케팅 자동화|퍼스널 브랜딩 AI|디지털 마케팅 자동화 | Mirra - AI 마케팅 파트너 | 기획, 제작, 배포, 관리까지 | — | 카드뉴스, 블로그, 숏폼, SNS 콘텐츠. 기획부터 제작, 배포, 댓글 관리, 성과 분석까지 AI가 전부 맡습니다. 당신은 승인만 하세요. |
Guidejar guidejar.com | — | Interactive Walkthrough Software for Teams | Guidejar | Turn everyday questions into interactive guides | Create step-by-step guides, SOPs, interactive walkthroughs, and product demos for your team and customers. Try Guidejar free. |
OpenClaw Kit turbostarter.dev/openclaw | — | OpenClaw Kit - launch your OpenClaw wrapper fast | TurboStarter | ShipOpenClawwrapper inminutesminutes | Production-ready OpenClaw wrapper starter kit. Skip weeks of wiring up auth, billing, deployment, and admin dashboards so you can ship your OpenClaw SaaS in hours, not weeks. |
Souls.zip souls.zip | AI agent souls|AI agent personality|AI agent framework|SOUL.md|AI agent identity|production-tested AI agents|AI agent marketplace|Claude agent|GPT agent|AI agent templates|AI agent behavioral framework | souls.zip | Production-tested AI agent souls and teams | your OpenClaw. | Production-tested identities, skills, and behavioral frameworks for AI agents. Built from real production usage. Every soul ran the job before it hit the shelf. |
Arcton arcton.com | — | Arcton: The most Intuitive Sales Platform I Just Prompt and Find Decision-Makers | Go-To-MarketProcessforFundraising & Sales | Just prompt who you are looking for and find relevant decision-makers, or upload a list of companies and refine your search just by prompting like on ChatGPT. |
ControlResell controlresell.com | reselling|vinted automation|inventory management|cross-posting|professional reseller|vinted bot|shopify sync | ControlResell - The OS for professional resellers | ControlResell | Récupérez+52h/moissur votre revente. | The all-in-one OS for pro resellers. Automate Vinted, centralize negotiations, and ship while you sleep. Save 20h/week. |
Adspirer adspirer.com | MCP Server for Google Ads|ChatGPT Google Ads integration|Claude Code advertising|Cursor MCP ads|Codex ad management|TikTok Ads AI|Model Context Protocol MCP|run ads from Claude|AI advertising automation|OpenClaw ads | Adspirer | MCP Server for Ads — ChatGPT, Claude, Cursor, Claude Code & More | Run ads right fromChatGPT and Claude. | Connect ChatGPT, Claude, Cursor, Claude Code, Codex, Windsurf, and OpenClaw to Google Ads, Meta Ads, TikTok Ads & LinkedIn Ads. The MCP server for AI-powered advertising. Create campaigns, analyze performance, and optimize ads using natural language. |
Aleister thealeister.com | — | Aleister — AI Orchestrator Agent | I'mAleister | Aleister is an autonomous AI orchestrator managing 9 specialized subagents across multiple LLMs. Running on Mac Mini in El Dorado Hills, CA. |
Distribb distribb.io | AI content generation|AI SEO software|AI SEO automation|backlink building|organic traffic|content marketing|Distribb | Distribb - AI SEO Software - Grow Organic Traffic on Auto-Pilot | Get Customers from Google, AI, Reddit, and Social Mediaon Autopilot | AI SEO Software to get traffic and outrank competitors with Backlinks & SEO-optimized content while you sleep. |
LUCIDE AI lucide.ai | — | Detecteur ChatGPT le plus fiable📡 • LUCIDE | Ledétecteur d'IAmade in Francele plus fiable | Lucide.ai est le premier détecteur de contenu IA 🔍 fiable spécialisé dans l'analyse de contenus Francophone ! 🚀 |
Local SEO Bot localseobot.com | — | Local SEO Bot: Ranking Higher on Google Maps | Rank Higher on Google Maps — Automatically | Local SEO Bot gets your business to rank higher on Google Maps. Get google business profile optimization, monthly citations and google map ranking reports for a fraction of what agencies cost. Subscribe in minutes. |
Visor visorfinance.app | — | Visor - Veja seu dinheiro com clareza | Veja seu futuro financeiro,não só seu passado. | Descubra quanto você pode gastar sem comprometer seus objetivos. Visor conecta suas contas, categoriza gastos automaticamente e usa IA para planejar seu futuro financeiro. Economize tempo, viva melhor. |
BERACE berace.app | pronostics F1|Formule 1|MotoGP|prédictions F1|prédictions MotoGP|Grands Prix|équipes|pilotes | BERACE - Pronostics F1 & MotoGP | You're already in! | BERACE vous propose une application simple, efficace et gratuite pour vous affronter sur les pronostics de courses de F1 et MotoGP. |
Strive Hybrid strivehybrid.com | sleep tracking|athletic recovery|fitness app|performance optimization|sleep coach|workout recovery|athlete sleep|recovery tracking | Strive: AI-Powered Sleep & Recovery Tracking for Athletes | The power behind your next best workout. | Optimize your sleep, recovery, and athletic performance with Strive. Get personalized insights, track your progress, and reach your fitness goals faster. |
Attivita24 attivita24.com | — | Attivita24: Attività commerciali in vendita in Italia | Attività in vendita in tutta ItaliaTrova acquirenti per la tua azienda o scopri aziende in vendita | Trova l'attività commerciale perfetta tra tanti annunci presenti sul nostro portale. Trova opportunità verificate in tutta Italia. |
Setter AI LLC trysetter.com | — | Setter AI – AI Appointment Setter | Setter AI: AI Appointment Setter | AI Appointment Setter. Book More Sales Calls. AI powered appointment setter. Qualifies leads and books them into your calendar. Never miss a lead again. |
internalOS.ai internalos.ai | — | InternalOS.ai | Your AI-native Product Teamon Autopilot. | — |
PowerIn powerin.io | — | PowerIn | Automated comments for LinkedIn and Twitter | Powered by AI | Engage with100+ Prospects DailyWit| | Automate LinkedIn comments with PowerIn by commenting on post from creators, or post that contains specific keywords | Boost your reach and expand your network. |
LarryBrain - Openclaw Marketplace larrybrain.com | AI agent|OpenClaw|skills marketplace|AI tools|agent automation|LarryBrain | LarryBrain - AI Agent Skill Marketplace | Unlimited tools, one subscription. | Premium skills for OpenClaw AI agents. One subscription, unlimited tools. Browse, install, and publish agent skills. |
GojiberryAI gojiberry.ai | — | Gojiberry AI - Grow your sales with warm leads & high intent outreach | Find&ContactHigh-IntentLeadsWithAI | Gojiberry finds warm leads with 10+ intent signals like funding, new roles, events & groups. AI Agents filter by your ICP and run smart outreach campaigns, booking demos automatically while syncing with Slack, HubSpot & Pipedrive. |
Think again gojiberry.ai | — | Gojiberry AI - Grow your sales with warm leads & high intent outreach | Find&ContactHigh-IntentLeadsWithAI | Gojiberry finds warm leads with 10+ intent signals like funding, new roles, events & groups. AI Agents filter by your ICP and run smart outreach campaigns, booking demos automatically while syncing with Slack, HubSpot & Pipedrive. |
Cash Cow INC gojiberry.ai | — | Gojiberry AI - Grow your sales with warm leads & high intent outreach | Find&ContactHigh-IntentLeadsWithAI | Gojiberry finds warm leads with 10+ intent signals like funding, new roles, events & groups. AI Agents filter by your ICP and run smart outreach campaigns, booking demos automatically while syncing with Slack, HubSpot & Pipedrive. |
TrustMRR trustmrr.com | MRR|revenue transparency|startup revenue|Stripe verified|indie hackers|startup metrics|transparent revenue|startup database | TrustMRR - Verified startup revenue database | The database of verified startup revenues | The database of verified startup revenues. Browse Stripe-verified MRR and revenue from real startups. Prove your revenue publicly. |
TrustMRR trustmrr.com | MRR|revenue transparency|startup revenue|Stripe verified|indie hackers|startup metrics|transparent revenue|startup database | TrustMRR - Verified startup revenue database | The database of verified startup revenues | The database of verified startup revenues. Browse Stripe-verified MRR and revenue from real startups. Prove your revenue publicly. |
Around 1 in 4 sites still set a keywords meta tag. Google confirmed in
2009
that it doesn't use it for ranking, so most don't bother. But the ones that
still do give us a useful window into how they think about their own
positioning.
13 sites have no <h1> tag at all: 1Capture, Codédex, Dropkiller,
MaidsnBlack, TrimRx, Vidgenie.ai, and others. That's the single most
important on-page SEO element. The first thing Google reads to understand what
your page is about, and they just skipped it. Vidgenie.ai does $24K/month
without an <h1>!
Here's some SEO help for these startups:
$ cd ~/projects/landing_page $ claude -p "please improve my SEO" --dangerously-skip-permissions
That will be ten thousand dollars, please.
An interesting split is between startups that describe what they are and startups that describe what they do for you. "Marketing Attribution Software" (Cometly) is a category label. "Double Your Trial-to-Paid Conversion Without Making Product Changes" (1Capture) is a promise. Both can work. The promise-based titles likely come from startups that understand their buyer's specific pain point—or at least think they do!
Yes, that em dash was written on purpose by me, a human person.
Stan has no meta description. With 100K customers on recurring subscriptions and huge brand recognition, they can probably afford it to not have perfect SEO.
But their blog tells a different story. They have a new post almost every day, and the SEO there looks way better. Let's check their latest post.
curl -s -G "https://api.webscraperapi.ai/v1/seo" \
-H "Authorization: Bearer $WEBSCRAPERAPI_API_KEY" \
--data-urlencode "output=json" \
--data-urlencode "url=https://stan.store/blog/cinna-creator-bio/"{
"h1": "Cinna: How a Personality-First Streamer Built a Career on Twitch",
"title": "Cinna Streamer Bio: How She Built Her Twitch Career - Stan Blog",
"description": "Who is Cinna? A complete Creator bio covering her age, background, Twitch rise, growth strategy, setbacks, and lessons for aspiring streamers.",
"generator": "WordPress 6.9.4",
"keywords": null,
"robots": "index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1",
"lang": "en-US",
"og_type": "article",
"og_title": "Cinna Streamer Bio: How She Built Her Twitch Career - Stan Blog",
"og_site_name": "Stan Blog",
"og_description": "Who is Cinna? A complete Creator bio covering her age, background, Twitch rise, growth strategy, setbacks, and lessons for aspiring streamers.",
"og_image": "https://stan.store/blog/wp-content/uploads/2026/03/Creator-Bio-Cinna.jpg",
"og_url": "https://stan.store/blog/cinna-creator-bio/",
"og_locale": "en_US",
"twitter_card": "summary_large_image",
"twitter_title": null,
"twitter_description": null,
"twitter_site": "@stanforcreators",
"twitter_creator": "@stanforcreators",
"product_price_amount": null,
"product_price_currency": null,
"product_availability": null,
"product_brand": null,
"product_condition": null
}The landing page has no meta description, but this blog post has all important fields carefully filled in. And look at the content strategy: they're writing bios of individual creators. Someone googling "Cinna streamer" or "how to build a Twitch career" lands on Stan's blog, which funnels them to the platform.
💡 Their landing page doesn't need to rank for anything because the blog is doing all the acquisition work.
The blog runs on WordPress while the landing page is Vue.js. This is pretty common, running the landing page or blog on a different stack, and sometimes the app on another one.
WordPress is great for SEO-heavy content publishing, and 6.9.4 is the current latest version, so they're keeping it updated. They are serious analytics and security.
Through their blog, Stan knows exactly what terms they want to rank for. But what about the other startups? The keywords and descriptions across all of them tell us exactly what terms each one is trying to own. I asked Clawie to infer the SEO target keyword each startup is likely trying to rank for on Google, based on their SEO data:
Here's what Clawie inferred for all 200 startups:
| Company | SEO target keywords |
|---|---|
Gumroad gumroad.com | sell digital products online |
Stan stan.store | creator store platform |
easytools easycart.pl | digital products shopping cart |
Brand On Demand, Inc. supliful.com | supplement dropshipping supplier |
Stack Influence stackinfluence.com | micro influencer marketing platform |
Comp AI trycomp.ai | AI compliance automation software |
Avenue Ticketing, Inc. avenueticket.com | buy event tickets online |
TrimRx trimrx.com | personalized weight loss program |
1Capture 1capture.io | trial to paid conversion |
Rezi rezi.ai | AI resume builder |
HypeProxies hypeproxies.com | proxy infrastructure provider |
Kitze kitze.io | developer education platform |
Cometly cometly.com | marketing attribution software |
PressWhizz presswhizz.com | link building marketplace |
REACT Studios™ reactstudios.com | online gaming community platform |
Defined Chase definedchase.com | digital marketing agency services |
Shugert Marketing shugert.com.mx | Shopify marketing analytics |
Claw Mart shopclawmart.com | AI assistants app store |
Dealsourcr Ltd dealsourcr.com | AI property deal finder |
PROSP prosp.ai | LinkedIn automation AI |
SEOBOT seobotai.com | AI SEO automation |
AEO Engine aeoengine.ai | answer engine optimization |
Vid.AI vid.ai | AI video generator |
Launch Club launchclub.ai | Reddit marketing agency |
MaidsnBlack maidsinblack.com | house cleaning service |
Presscart presscart.com | AI PR opportunities platform |
Salesrobot, INC salesrobot.co | LinkedIn cold outreach automation |
DataExpert / TechCreator dataexpert.io | data engineering online courses |
Codédex codedex.io | learn coding for beginners |
Postiz postiz.com | social media scheduling tool |
Teachizy teachizy.fr | online course creation platform |
HVAKR hvakr.com | HVAC design software |
BackPedal Ltd backpedal.co | ebike theft protection |
Felix Craft felixcraft.ai | AI agent guides |
Roofclaw roofclaw.com | roofing operations software |
Doors Delivered doorsdelivered.com | interior doors online UK |
Indexsy indexsy.com | SEO growth agency |
React Bits Pro pro.reactbits.dev | React UI components library |
Corsidia corsidia.com | find online courses |
LLM Gateway llmgateway.io | LLM API routing platform |
Kortex-Notebooklm kortex-notebooklm.com | NotebookLM knowledge management |
Lunchbreak lunchbreak.ai | AI detection bypass tool |
STELLA PROXIES stellaproxies.com | residential proxy service |
OpenClaw Pro openclaw.new | deploy AI chatbot |
MyCater mycater.fr | catering delivery for companies |
Donely donely.ai | OpenClaw hosting management |
Hack2hire hack2hire.com | software engineer interview prep |
Angel Match angelmatch.io | investor database startup funding |
IBERGOUR ibergour.com | Spanish jamón ibérico online |
Dropkiller dropkiller.com | dropshipping product winners |
LocalRank.so localrank.so | local SEO software |
Talefy talefy.ai | AI story generator |
Sherpa mentoriasherpa.com | therapist mentorship training |
Simple Analytics simpleanalytics.com | privacy-focused analytics platform |
CartBoss cartboss.io | abandoned cart recovery SMS |
Brevilabs brevilabs.com | AI human collaboration tools |
BuildMyAgent.io buildmyagent.io | AI agent builder platform |
ChatDash, LLC chat-dash.com | build sell AI services |
uhoh.com uhoh.com | IT support services |
VEX Wallet vexwallet.co | send money from USA internationally |
Draft AI getdraft.io | social media content generator |
Draft AI getdraft.app | AI content writing tool |
Supergrow supergrow.ai | LinkedIn personal branding AI |
AE-intelligence humanizeaitext.ai | humanize AI text detector |
ConvertLabs convertlabs.io | service business booking software |
Calendesk calendesk.com | appointment scheduling software |
notis.ai notis.ai | AI task automation assistant |
Liinks liinks.co | link in bio page builder |
StoryShort storyshort.ai | AI faceless video generator |
Sleek sleek.design | AI app design mockup generator |
Fiddl.art fiddl.art | AI art generator |
WaLead AI walead.ai | LinkedIn automation tool |
POST BRIDGE post-bridge.com | social media scheduling software |
setupclaw setupclaw.com | AI assistant setup service |
Capgo capgo.app | Capacitor app live updates |
MedPilot medpilothq.com | medical practice AI automation |
SuperX superx.so | X Twitter growth tool |
Brainrot.mov brainrot.mov | viral AI video generator |
Conductor conductor.is | QuickBooks Desktop API |
SEO STACK seo-stack.io | AI SEO tools platform |
Karma karmabot.chat | employee recognition platform |
Low Content AI lowcontent.ai | AI low content book creator |
Parakeet Chat parakeet.chat | inmate communication app |
Vidgenie.ai vidgenie.ai | AI video generator |
SOVEREIGN LEADS LIMITED theleadguy.online | lead generation trades construction |
Michael Veail theleadguy.online | lead generation trades construction |
Replayed LTD replayed.co | hire YouTube video editor |
RankAI rankai.ai | AI SEO agency |
DataFast datafa.st | marketing attribution analytics |
Pasul.ro pasul.ro | find therapist online |
Ari Horesh entermedschool.com | medical school advisor |
AI MONEY GROUP aipersonamethod.com | AI business consulting |
AI Labs tradenote.io | trading strategy backtester |
Advise.so advise.so | marketing community membership |
Saaspa.ge saaspa.ge | product launch platform |
Evergreen Support, LLC evergreensupport.co | outsourced customer support |
Plutio (Super Work AI) plutio.com | all-in-one business management |
Reddit Agency redditagency.com | Reddit marketing agency |
Orel Zilberman, LLC substack.com/@orelzilberman | Substack creator tools |
Tree Nerd Academy treenerdacademy.com | ISA arborist exam prep |
ForYouGaming Inc. foryougaming.com | online gaming platform |
Tailride tailride.so | automated invoice processing |
Yeema LTD yeema.co | startup design agency |
Yaak yaak.app | API client |
AutoContent API autocontentapi.com | AI podcast generator |
Altitude Cleaning Crew altitudecleaningcrew.com | house cleaning services |
Dotmarket.eu - Achat / vente de business web dotmarket.eu | buy sell digital business |
Digitiz.fr digitiz.fr | web business tools |
Vibe3D AI vibe3d.ai | AI 3D rendering |
Virlo virlo.ai | TikTok analytics |
Analytics Mates analyticsmates.com | Google Analytics 4 help |
Synta synta.io | n8n workflow automation AI |
Buzzly AI heybuzzly.ai | AI ad creation |
Book The Move bookthemove.com | moving company leads |
Tribe Social tribesocial.io | community app builder |
ChatSEO chatseo.app | SEO analytics tool |
Mig mig.lemonsqueezy.com | productivity software |
LinkPost linkpost.gg | LinkedIn content creator |
Czat.ai czat.ai | AI chatbot |
Hirevire hirevire.com | video screening software |
Lancer.app lancer.app | Upwork automation tool |
OVER THE PLANET overtheplanet.com | vacation packages |
Bookedin bookedin.ai | lead nurturing automation |
FindClout findclout.com | meme page advertising |
Rendler Studio Inc. rendlerstudio.com | architectural 3D rendering |
BlogToPin blogtopin.com | Pinterest automation tool |
QR Code AI qrcode-ai.com | AI QR code generator |
Ave Rides LLC averides.com | book local rides |
*** OF PROMPT OÜ godofprompt.ai | best AI prompts library |
Aymo AI aymo.ai | all-in-one AI platform |
DIRECT AI directai.app | AI YouTube video creator |
Apiframe apiframe.ai | unified AI media API |
Private Location Intelligence API platform example.com | location intelligence API |
SetSmart setsmart.io | AI appointment booking |
ClaudeKit claudekit.cc | AI development workflows |
Esferas.io esferas.io | LinkedIn automation tool |
RTMP.IN rtmp.in | stream Instagram from computer |
SMMDealFinder.com smmdealfinder.com | SMM client finder |
Prymatica prymatica.com | cold email outreach |
Data Bloo databloo.com | Looker Studio templates |
ToolScale toolscale.io | all-in-one AI tools |
DM Champ dmchamp.com | AI sales assistant |
SideQuest - B2C Finance SaaS joinsidequest.com | paid user studies |
Yakkr Growth yakkrgrowth.com | Twitch stream growth tools |
Cure My Swing shop.curemyswing.com | golf swing tips |
Superbullet, LLC superbulletstudios.com | Roblox game development |
Nordgard nordgard.nl | coworking space Groningen |
SyncForge trysyncforge.xyz | music sync licensing software |
Sandimax sandimax.com | software development |
PipeLime pipelime.ai | AI sales automation |
BDM Business benasleo.com | SEO services |
Prototipal prototipal.com | API integration platform |
Zero G zerogtrading.com | trading algorithms software |
ChatEDU Inc. chatedu.io | AI study tools |
Enquiry Genie enquirygenie.ai | Airbnb optimization tools |
Marea Alcalina mareaalcalina.com | digital catalog WhatsApp |
UX Magic Inc. uxmagic.ai | AI UI design generator |
Kassenmeister | AK Software GmbH kassenmeister.de | POS system software |
CodeFast codefa.st | learn coding online |
Pitchlo pitchlo.com | UGC creator marketplace |
Rybbit rybbit.com | privacy analytics alternative |
Faceless, LLC faceless.so | AI faceless video generator |
Coral coral.inc | AI agents automation |
ShipFast shipfa.st | NextJS startup template |
AppAlchemy appalchemy.ai | AI app design tool |
StoryHero storyhero.gg | auto cut long videos viral clips |
Jake Marine repvision.app | sales team management software |
Produktstudio.ai produktstudio.ai | AI product photography generator |
EverFlame Design everflamedesign.com | UI UX design studio |
ZdjecieAI.pl zdjecieai.pl | AI photo generator |
Catalister catalister.com | AI product research listing |
GenPPT genppt.com | AI presentation maker |
StartClaw startclaw.com | AI chatbot platform |
MapPack ToolBox mappacktoolbox.com | local SEO tools |
Stilo Media, LLC stilo.media | book publishing services |
The Brazil Girl thebrazilgirl.com | learn Portuguese online |
Numbers Game Limited numbersgame.uk | football prediction stats |
Fidelatoo fidelatoo.fr | loyalty card app |
Mirra mirra.my | AI marketing content creation |
Guidejar guidejar.com | interactive walkthrough software |
OpenClaw Kit turbostarter.dev/openclaw | AI wrapper starter kit |
Souls.zip souls.zip | AI agent marketplace |
Arcton arcton.com | sales lead finder |
ControlResell controlresell.com | reselling automation software |
Adspirer adspirer.com | AI ad management |
Aleister thealeister.com | AI agent orchestration |
Distribb distribb.io | AI SEO automation |
LUCIDE AI lucide.ai | AI content detector |
Local SEO Bot localseobot.com | Google Maps ranking |
FIVEMANAGE AS fivemanage.com | game server CDN |
Visor visorfinance.app | personal finance app |
BERACE berace.app | F1 MotoGP prediction game |
Strive Hybrid strivehybrid.com | athletic recovery tracking |
Attivita24 attivita24.com | buy sell business Italy |
Setter AI LLC trysetter.com | AI appointment booking |
internalOS.ai internalos.ai | AI product team |
PowerIn powerin.io | LinkedIn automation |
LarryBrain - Openclaw Marketplace larrybrain.com | AI agent, OpenClaw, skills marketplace, AI tools |
GojiberryAI gojiberry.ai | AI lead generation software |
Think again gojiberry.ai | AI lead generation software |
Cash Cow INC gojiberry.ai | AI lead generation software |
TrustMRR trustmrr.com | startup revenue database |
TrustMRR trustmrr.com | startup revenue database |
/seo endpoint. So if you're using webscraperapi, soon the separate LLM inference won't be needed.Now we have an SEO target keyword for every startup. With these, we can use webscraperapi to answer two much more interesting questions:
- who else ranks for them, and
- who's paying to show up?
Who are they competing with?
Take Brand On Demand (Supliful). They do $1M/month. Their business: you pick
supplements from their catalog, slap your own brand on them, and they ship
directly to your customers. Based on their SEO, I think they're trying to rank
for "supplement dropshipping supplier". Let's search Google with webscraperapi's
/google_search and see who shows up:
curl -s -G "https://api.webscraperapi.ai/v1/google_search" \
-H "Authorization: Bearer $WEBSCRAPERAPI_API_KEY" \
--data-urlencode "output=json" \
--data-urlencode "query=supplement dropshipping supplier"[
{
"type": "organic",
"position": 1,
"title": "Supliful: Private Label Supplements - Leading Dropshipping ...",
"url": "https://supliful.com/",
"displayed_url": "https://supliful.com",
"description": "Supliful is a private-label dropshipping platform that empowers you to create and sell your brand using supplements, coffee, skincare, and pet products.",
"sitelinks": null
},
{
"type": "organic",
"position": 2,
"title": "The best supplements dropshipping suppliers and ...",
"url": "https://www.shopcanal.com/category/supplements",
"displayed_url": "https://www.shopcanal.com› category › supplements",
"description": "Browse Canal's list of the best supplements dropshipping suppliers.",
"sitelinks": null
},
{
"type": "organic",
"position": 3,
"title": "Dropship Vitamins & Supplements from Wholesale Suppliers",
"url": "https://www.inventorysource.com/dropship-vitamins-supplements-suppliers/",
"displayed_url": "https://www.inventorysource.com› dropship-vitamins-s...",
"description": "Start dropshipping vitamins, supplements, and health products with trusted suppliers.",
"sitelinks": null
},
{
"type": "organic",
"position": 4,
"title": "Supplement dropshipping: Best products and suppliers",
"url": "https://www.omnisend.com/blog/dropship-supplements/",
"displayed_url": "https://www.omnisend.com› dropship-supplements",
"description": "Nov 21, 2025 — Supliful is a private-label supplements dropship supplier specializing in vitamins, fitness formulas, sleep supplements...",
"sitelinks": null
},
{
"type": "organic",
"position": 5,
"title": "Dropshipping Suppliers in the Vitamins & Supplements ...",
"url": "https://topdawg.com/dropshipping-products/section/Vitamins%20&%20Supplements",
"displayed_url": "https://topdawg.com› section › Vitamins & Supplements",
"description": "Wholesale products and supplies offered by dropshipping suppliers for retailers with dropship businesses.",
"sitelinks": null
}
]Supliful (Brand On Demand) ranks #1 for "supplement dropshipping supplier". And not just #1. They're so dominant that even the #4 result (Omnisend's blog post) mentions Supliful by name in its description. When your competitors' roundup posts are recommending you, you've won the SEO game for that keyword. $1M/month, growing 16%, owning their SEO target keyword.
On the other end of the spectrum is Rezi, an "AI resume builder". They have 4 million users and 11,650 active subscribers, but they don't even show up in the top 8 results for "AI resume builder". Canva, Teal, Resume-Now, and a Reddit thread all outrank them.
Two very different outcomes. I wanted to see what the pattern looks like across all 200 startups, so I asked Clawie to search Google for every SEO target keyword:
Here's the full picture:
Organic rank distribution (203 startups)
| Company | SEO target keyword | Rank | Top competitors |
|---|---|---|---|
Brand On Demand, Inc. supliful.com | supplement dropshipping supplier | #1 | #2shopcanal.com #3inventorysource.com #4omnisend.com |
Cometly cometly.com | marketing attribution software | #1 | #2gartner.com #3hockeystack.com #4reddit.com |
TrustMRR trustmrr.com | startup revenue database | #1 | #2gaps.com #3crunchbase.com #4tinystartups.com |
SMMDealFinder.com smmdealfinder.com | SMM client finder | #1 | #2reddit.com #3cloudcampaign.com #4abcsocialmediamanagement.com |
TrustMRR trustmrr.com | startup revenue database | #1 | #2gaps.com #3crunchbase.com #4tinystartups.com |
Dealsourcr Ltd dealsourcr.com | AI property deal finder | #2 | #1dealcheck.io #3getsurface.ai #4dealworthit.com |
Simple Analytics simpleanalytics.com | privacy-focused analytics platform | #2 | #1plausible.io #3matomo.org #4userbird.com |
Low Content AI lowcontent.ai | AI low content book creator | #2 | #1abookcreator.com #3automateed.com #4squibler.io |
Vibe3D AI vibe3d.ai | AI 3D rendering | #2 | #1cgdream.ai #3higgsfield.ai #4uxdesign.cc |
QR Code AI qrcode-ai.com | AI QR code generator | #2 | #1huggingface.co #3qrcode-monkey.com #4qrcodekit.com |
Faceless, LLC faceless.so | AI faceless video generator | #2 | #1invideo.io #3autoshorts.ai #4canva.com |
LocalRank.so localrank.so | local SEO software | #4 | #1localo.com #2brightlocal.com #3reddit.com |
Apiframe apiframe.ai | unified AI media API | #4 | #1unified.to #2runware.ai #3outstand.so |
Nordgard nordgard.nl | coworking space Groningen | #4 | #1coworkingcafe.com #2coworker.com #3werkplek050.nl |
Supergrow supergrow.ai | LinkedIn personal branding AI | #5 | #1forbes.com #2linkedin.com #3linkedin.com |
Yaak yaak.app | API client | #5 | #1postman.com #2apisyouwonthate.com #3developers.google.com |
SuperX superx.so | X Twitter growth tool | #6 | #1tweethunter.io #2thecmo.com #3reddit.com |
FindClout findclout.com | meme page advertising | #6 | #1reddit.com #2mailchimp.com #3en.wikipedia.org |
Guidejar guidejar.com | interactive walkthrough software | #6 | #1walkme.com #2productfruits.com #3supademo.com |
BlogToPin blogtopin.com | Pinterest automation tool | #7 | #1tailwindapp.com #2create.pinterest.com #3quincreativ.com |
RTMP.IN rtmp.in | stream Instagram from computer | #8 | #1about.instagram.com #2help.instagram.com #3insta360.com |
Data Bloo databloo.com | Looker Studio templates | #8 | #1lookerstudio.google.com #2portermetrics.com #3blog.coupler.io |
Gumroad gumroad.com | sell digital products online | — | #1reddit.com #2medium.com #3payhip.com |
Stan stan.store | creator store platform | — | #1squareup.com #2vexels.com #3findstack.com |
easytools easycart.pl | digital products shopping cart | — | #1samcart.com #2thrivecart.com #3sellfy.com |
Stack Influence stackinfluence.com | micro influencer marketing platform | — | #1collabstr.com #2reddit.com #3keepcalmandchiffon.com |
Comp AI trycomp.ai | AI compliance automation software | — | #1vanta.com #2scytale.ai #3compliance.ai |
Avenue Ticketing, Inc. avenueticket.com | buy event tickets online | — | #1ticketmaster.com #2seatgeek.com #3stubhub.com |
TrimRx trimrx.com | personalized weight loss program | — | #1diet.mayoclinic.org #2transperitymedicalproviders.com #3fshn.illinois.edu |
1Capture 1capture.io | trial to paid conversion | — | #1subsets.com #2getmonetizely.com #3ohblimey.com |
Rezi rezi.ai | AI resume builder | — | #1canva.com #2sheetsresume.com #3tealhq.com |
HypeProxies hypeproxies.com | proxy infrastructure provider | — | #1proxyrack.com #2cm-alliance.com #3jpost.com |
Kitze kitze.io | developer education platform | — | #1leaddev.com #2reddit.com #3codesmith.io |
PressWhizz presswhizz.com | link building marketplace | — | #1reddit.com #2linksman.io #3linkhouse.net |
REACT Studios™ reactstudios.com | online gaming community platform | — | #1communitygaming.io #2epal.gg #3clanfinder.gg |
GojiberryAI gojiberry.ai | AI lead generation software | — | #1seamless.ai #2upwork.com #3instantly.ai |
Defined Chase definedchase.com | digital marketing agency services | — | #1thriveagency.com #2interodigital.com #3vdigitalservices.com |
Shugert Marketing shugert.com.mx | Shopify marketing analytics | — | #1shopify.com #2help.shopify.com #3shopify.dev |
Claw Mart shopclawmart.com | AI assistants app store | — | #1apps.apple.com #2apps.apple.com #3apps.apple.com |
PROSP prosp.ai | LinkedIn automation AI | — | #1meetalfred.com #2heyreach.io #3expandi.io |
SEOBOT seobotai.com | AI SEO automation | — | #1marketermilk.com #2wpseoai.com #3semrush.com |
AEO Engine aeoengine.ai | answer engine optimization | — | #1reddit.com #2forbes.com #3coursera.org |
Vid.AI vid.ai | AI video generator | — | #1canva.com #2invideo.io #3freepik.com |
Launch Club launchclub.ai | Reddit marketing agency | — | #1reddit.com #2reddit.com #3growthmarketingpro.com |
MaidsnBlack maidsinblack.com | house cleaning service | — | #1yelp.com #2merrymaids.com #3pinkshoecleaningcrew.com |
Presscart presscart.com | AI PR opportunities platform | — | #1prowly.com #2obapr.com #3propel-ai.com |
Salesrobot, INC salesrobot.co | LinkedIn cold outreach automation | — | #1meetalfred.com #2heyreach.io #3expandi.io |
DataExpert / TechCreator dataexpert.io | data engineering online courses | — | #1datacamp.com #2online.professional.uchicago.edu #3coursera.org |
Codédex codedex.io | learn coding for beginners | — | #1reddit.com #2codecademy.com #3youtube.com |
Postiz postiz.com | social media scheduling tool | — | #1technologyadvice.com #2blaze.ai #3hootsuite.com |
Teachizy teachizy.fr | online course creation platform | — | #1emailvendorselection.com #2teachable.com #3reddit.com |
HVAKR hvakr.com | HVAC design software | — | #1carrier.com #2wrightsoft.com #3zwsoft.com |
BackPedal Ltd backpedal.co | ebike theft protection | — | #1reddit.com #2momentum-biking.com #3aventon.com |
Felix Craft felixcraft.ai | AI agent guides | — | #1openai.com #2promptingguide.ai #3cloud.google.com |
Roofclaw roofclaw.com | roofing operations software | — | #1roofr.com #2acculynx.com #3jobnimbus.com |
Doors Delivered doorsdelivered.com | interior doors online UK | — | #1leaderonline.com #2wickes.co.uk #3doorsuperstore.co.uk |
Indexsy indexsy.com | SEO growth agency | — | #1portlandseogrowth.com #2graphite.io #3teknicks.com |
React Bits Pro pro.reactbits.dev | React UI components library | — | #1reddit.com #2mui.com #3untitledui.com |
Corsidia corsidia.com | find online courses | — | #1coursera.org #2classcentral.com #3grow.google |
LLM Gateway llmgateway.io | LLM API routing platform | — | #1github.com #2getmaxim.ai #3krakend.io |
Kortex-Notebooklm kortex-notebooklm.com | NotebookLM knowledge management | — | #1notebooklm.google #2xda-developers.com #3workspace.google.com |
Lunchbreak lunchbreak.ai | AI detection bypass tool | — | #1stealthwriter.ai #2notegpt.io #3monica.im |
STELLA PROXIES stellaproxies.com | residential proxy service | — | #1oxylabs.io #2brightdata.com #3webshare.io |
OpenClaw Pro openclaw.new | deploy AI chatbot | — | #1docs.oracle.com #2medium.com #3vercel.com |
MyCater mycater.fr | catering delivery for companies | — | #1ezcater.com #2ideliverthat.com #3foodja.com |
Donely donely.ai | OpenClaw hosting management | — | #1xcloud.host #2reddit.com #3hostinger.com |
Hack2hire hack2hire.com | software engineer interview prep | — | #1techinterviewhandbook.org #2reddit.com #3github.com |
Angel Match angelmatch.io | investor database startup funding | — | #1mercury.com #2openvc.app #3qubit.capital |
SOVEREIGN LEADS LIMITED theleadguy.online | lead generation trades construction | — | #1iambuilders.com #2constructconnect.com #3housecallpro.com |
IBERGOUR ibergour.com | Spanish jamón ibérico online | — | #1tienda.com #2meatnbone.com #3cincojotas.us |
Dropkiller dropkiller.com | dropshipping product winners | — | #1tradelle.io #2dropship.io #3reddit.com |
Talefy talefy.ai | AI story generator | — | #1perchance.org #2squibler.io #3easemate.ai |
Sherpa mentoriasherpa.com | therapist mentorship training | — | #1psian.org #2apa.org #3asht.org |
CartBoss cartboss.io | abandoned cart recovery SMS | — | #1apps.shopify.com #2infobip.com #3recart.com |
Brevilabs brevilabs.com | AI human collaboration tools | — | #1augmentcode.com #2blog.box.com #3workhuman.com |
BuildMyAgent.io buildmyagent.io | AI agent builder platform | — | #1gumloop.com #2cloud.google.com #3reddit.com |
ChatDash, LLC chat-dash.com | build sell AI services | — | #1medium.com #2reddit.com #3n8n.io |
uhoh.com uhoh.com | IT support services | — | #1nerdstogo.com #2americanhelpdesk.com #3solutionbuilders.com |
VEX Wallet vexwallet.co | send money from USA internationally | — | #1wise.com #2worldremit.com #3westernunion.com |
Draft AI getdraft.io | social media content generator | — | #1canva.com #2copy.ai #3playplay.com |
Draft AI getdraft.app | AI content writing tool | — | #1rytr.me #2reddit.com #3grammarly.com |
AE-intelligence humanizeaitext.ai | humanize AI text detector | — | #1humanizeai.pro #2quillbot.com #3grammarly.com |
ConvertLabs convertlabs.io | service business booking software | — | #1squareup.com #2simplybook.me #3zapier.com |
Calendesk calendesk.com | appointment scheduling software | — | #1calendly.com #2zapier.com #3acuityscheduling.com |
notis.ai notis.ai | AI task automation assistant | — | #1usemotion.com #2zapier.com #3thedigitalprojectmanager.com |
Liinks liinks.co | link in bio page builder | — | #1lnk.bio #2canva.com #3linktr.ee |
StoryShort storyshort.ai | AI faceless video generator | — | #1invideo.io #2faceless.so #3reddit.com |
Sleek sleek.design | AI app design mockup generator | — | #1canva.com #2visily.ai #3figma.com |
Fiddl.art fiddl.art | AI art generator | — | #1canva.com #2deepai.org #3adobe.com |
WaLead AI walead.ai | LinkedIn automation tool | — | #1heyreach.io #2linkedhelper.com #3dux-soup.com |
POST BRIDGE post-bridge.com | social media scheduling software | — | #1technologyadvice.com #2blaze.ai #3zapier.com |
setupclaw setupclaw.com | AI assistant setup service | — | #1virtualsurge.com #2kustomer.com #3goto.com |
Capgo capgo.app | Capacitor app live updates | — | #1capacitorjs.com #2capawesome.io #3reddit.com |
MedPilot medpilothq.com | medical practice AI automation | — | #1doctorsmanagement.com #2curogram.com #3ventrahealth.com |
Brainrot.mov brainrot.mov | viral AI video generator | — | #1higgsfield.ai #2veed.io #3canva.com |
Conductor conductor.is | QuickBooks Desktop API | — | #1developer.intuit.com #2quickbooks.intuit.com #3support.ramp.com |
SEO STACK seo-stack.io | AI SEO tools platform | — | #1eesel.ai #2onelittleweb.com #3athenahq.ai |
Karma karmabot.chat | employee recognition platform | — | #1peoplemanagingpeople.com #2gartner.com #3bonusly.com |
Parakeet Chat parakeet.chat | inmate communication app | — | #1apps.apple.com #2ncic.com #3smartinmate.com |
Vidgenie.ai vidgenie.ai | AI video generator | — | #1canva.com #2invideo.io #3capcut.com |
Michael Veail theleadguy.online | lead generation trades construction | — | #1iambuilders.com #2constructconnect.com #3housecallpro.com |
Replayed LTD replayed.co | hire YouTube video editor | — | #1upwork.com #2reddit.com #3joinroster.co |
RankAI rankai.ai | AI SEO agency | — | #1reddit.com #2level.agency #3ziptie.dev |
DataFast datafa.st | marketing attribution analytics | — | #1advertising.amazon.com #2supermetrics.com #3ruleranalytics.com |
Pasul.ro pasul.ro | find therapist online | — | #1psychologytoday.com #2talkspace.com #3teladochealth.com |
Ari Horesh entermedschool.com | medical school advisor | — | #1medschoolcoach.com #2reddit.com #3medschoolinsiders.com |
AI MONEY GROUP aipersonamethod.com | AI business consulting | — | #1ey.com #2bcg.com #3ibm.com |
AI Labs tradenote.io | trading strategy backtester | — | #1fxreplay.com #2ig.com #3backtestingmax.com |
Advise.so advise.so | marketing community membership | — | #1powerful-marketers.com #2ama.org #3thecmo.com |
Saaspa.ge saaspa.ge | product launch platform | — | #1producthunt.com #2reddit.com #3asana.com |
Evergreen Support, LLC evergreensupport.co | outsourced customer support | — | #1supportyourapp.com #2ever-help.com #3givainc.com |
Plutio (Super Work AI) plutio.com | all-in-one business management | — | #1striven.com #2honeybook.com #3agilityportal.io |
Reddit Agency redditagency.com | Reddit marketing agency | — | #1reddit.com #2reddit.com #3reddit.com |
Orel Zilberman, LLC substack.com/@orelzilberman | Substack creator tools | — | #1substack.com #2wonderingaboutai.substack.com #3badredheadmediallc.substack.com |
Tree Nerd Academy treenerdacademy.com | ISA arborist exam prep | — | #1wwv.isa-arbor.com #2testprepreview.com #3isa-arbor.com |
ForYouGaming Inc. foryougaming.com | online gaming platform | — | #1store.steampowered.com #2pcmag.com #3reddit.com |
Tailride tailride.so | automated invoice processing | — | #1abbyy.com #2stripe.com #3reddit.com |
Yeema LTD yeema.co | startup design agency | — | #1awesomic.com #2phenomenonstudio.com #3condensed.io |
AutoContent API autocontentapi.com | AI podcast generator | — | #1notegpt.io #2wondercraft.ai #3monica.im |
Altitude Cleaning Crew altitudecleaningcrew.com | house cleaning services | — | #1homeaglow.com #2merrymaids.com #3thecleaningauthority.com |
Dotmarket.eu - Achat / vente de business web dotmarket.eu | buy sell digital business | — | #1flippa.com #2empireflippers.com #3websiteclosers.com |
Digitiz.fr digitiz.fr | web business tools | — | #1hubspot.com #2squareup.com #3jennakutcherblog.com |
Virlo virlo.ai | TikTok analytics | — | #1tiktok.com #2tiktok.com #3reddit.com |
Analytics Mates analyticsmates.com | Google Analytics 4 help | — | #1support.google.com #2developers.google.com #3ga4.com |
Synta synta.io | n8n workflow automation AI | — | #1n8n.io #2n8nchat.com #3towardsdatascience.com |
Buzzly AI heybuzzly.ai | AI ad creation | — | #1canva.com #2adgenai.com #3invideo.io |
Book The Move bookthemove.com | moving company leads | — | #1network-leads.com #2supermove.com #3movingleads.com |
Tribe Social tribesocial.io | community app builder | — | #1passion.io #2appsmith.com #3movement.so |
ChatSEO chatseo.app | SEO analytics tool | — | #1semrush.com #2seoptimer.com #3zapier.com |
Mig mig.lemonsqueezy.com | productivity software | — | #1buffer.com #2pcmag.com #3notion.com |
LinkPost linkpost.gg | LinkedIn content creator | — | #1members.linkedin.com #2members.linkedin.com #3linkedin.com |
Czat.ai czat.ai | AI chatbot | — | #1deepai.org #2chatgpt.com #3cloud.google.com |
Hirevire hirevire.com | video screening software | — | #1selectsoftwarereviews.com #2peoplemanagingpeople.com #3willo.video |
Lancer.app lancer.app | Upwork automation tool | — | #1gigradar.io #2support.upwork.com #3getmany.com |
OVER THE PLANET overtheplanet.com | vacation packages | — | #1costcotravel.com #2expedia.com #3applevacations.com |
Bookedin bookedin.ai | lead nurturing automation | — | #1campaigncreators.com #2salesforce.com #3madisonlogic.com |
Rendler Studio Inc. rendlerstudio.com | architectural 3D rendering | — | #1autodesk.com #2archicgi.com #3omegarender.com |
Ave Rides LLC averides.com | book local rides | — | #1uber.com #2gocurb.com #3lyft.com |
*** OF PROMPT OÜ godofprompt.ai | best AI prompts library | — | #1medium.com #2reddit.com #3gail.wharton.upenn.edu |
Aymo AI aymo.ai | all-in-one AI platform | — | #1reddit.com #2multiple.chat #3alle-ai.com |
DIRECT AI directai.app | AI YouTube video creator | — | #1canva.com #2veed.io #3invideo.io |
Private Location Intelligence API platform example.com | location intelligence API | — | #1moodys.com #2developer.rms.com #3postman.com |
SetSmart setsmart.io | AI appointment booking | — | #1synthflow.ai #2zapier.com #3calendly.com |
ClaudeKit claudekit.cc | AI development workflows | — | #1medium.com #2reddit.com #3dev.to |
Esferas.io esferas.io | LinkedIn automation tool | — | #1heyreach.io #2linkedhelper.com #3heyreach.io |
Prymatica prymatica.com | cold email outreach | — | #1reddit.com #2saleshandy.com #3indeed.com |
ToolScale toolscale.io | all-in-one AI tools | — | #1reddit.com #21min.ai #3alle-ai.com |
DM Champ dmchamp.com | AI sales assistant | — | #1zapier.com #2reddit.com #3artisan.co |
SideQuest - B2C Finance SaaS joinsidequest.com | paid user studies | — | #1userinterviews.com #2respondent.io #3uriux.com |
Yakkr Growth yakkrgrowth.com | Twitch stream growth tools | — | #1reddit.com #2streamscharts.com #3streamladder.com |
Cure My Swing shop.curemyswing.com | golf swing tips | — | #1youtube.com #2golfdistillery.com #3alamocitygolftrail.com |
Superbullet, LLC superbulletstudios.com | Roblox game development | — | #1create.roblox.com #2reddit.com #3devforum.roblox.com |
SyncForge trysyncforge.xyz | music sync licensing software | — | #1aristake.com #2mytrackstage.com #33theorymusic.com |
Sandimax sandimax.com | software development | — | #1ibm.com #2en.wikipedia.org #3atlassian.com |
PipeLime pipelime.ai | AI sales automation | — | #1zapier.com #2outreach.io #3sales-automation.ai |
BDM Business benasleo.com | SEO services | — | #1coalitiontechnologies.com #2developers.google.com #3seoinc.com |
Prototipal prototipal.com | API integration platform | — | #1openlegacy.com #2ibm.com #3zapier.com |
Zero G zerogtrading.com | trading algorithms software | — | #1quantconnect.com #2reddit.com #3wallstreetzen.com |
ChatEDU Inc. chatedu.io | AI study tools | — | #1studley.ai #2reddit.com #3pearson.com |
Enquiry Genie enquirygenie.ai | Airbnb optimization tools | — | #1rankbreeze.com #2reddit.com #3hello.pricelabs.co |
Marea Alcalina mareaalcalina.com | digital catalog WhatsApp | — | #1faq.whatsapp.com #2faq.whatsapp.com #3faq.whatsapp.com |
UX Magic Inc. uxmagic.ai | AI UI design generator | — | #1uxpilot.ai #2figma.com #3banani.co |
Kassenmeister | AK Software GmbH kassenmeister.de | POS system software | — | #1squareup.com #2loyverse.com #3uschamber.com |
CodeFast codefa.st | learn coding online | — | #1freecodecamp.org #2reddit.com #3code.org |
Pitchlo pitchlo.com | UGC creator marketplace | — | #1showca.se #2insense.pro #3joinbrands.com |
Rybbit rybbit.com | privacy analytics alternative | — | #1simpleanalytics.com #2reddit.com #3posthog.com |
Coral coral.inc | AI agents automation | — | #1automationanywhere.com #2digitalocean.com #3workato.com |
ShipFast shipfa.st | NextJS startup template | — | #1github.com #2vercel.com #3getnextjstemplates.com |
AppAlchemy appalchemy.ai | AI app design tool | — | #1uxpilot.ai #2stitch.withgoogle.com #3medium.muz.li |
StoryHero storyhero.gg | auto cut long videos viral clips | — | #1opus.pro #2aivideocut.com #3reddit.com |
Jake Marine repvision.app | sales team management software | — | #1pipedrive.com #2salesforce.com #3forcemanager.com |
Produktstudio.ai produktstudio.ai | AI product photography generator | — | #1claid.ai #2bandy.ai #3flair.ai |
EverFlame Design everflamedesign.com | UI UX design studio | — | #1neuronux.com #2eleken.co #3koruux.com |
ZdjecieAI.pl zdjecieai.pl | AI photo generator | — | #1canva.com #2deepai.org #3notegpt.io |
Catalister catalister.com | AI product research listing | — | #1sellerlabs.com #2displayr.com #3quantilope.com |
GenPPT genppt.com | AI presentation maker | — | #1slidesgo.com #2canva.com #3adobe.com |
StartClaw startclaw.com | AI chatbot platform | — | #1zapier.com #2chatbot.com #3cloud.google.com |
MapPack ToolBox mappacktoolbox.com | local SEO tools | — | #1reddit.com #2seo.ai #3chatmeter.com |
Stilo Media, LLC stilo.media | book publishing services | — | #1press.barnesandnoble.com #2bookbaby.com #3reedsy.com |
The Brazil Girl thebrazilgirl.com | learn Portuguese online | — | #1duolingo.com #2spanport.washington.edu #3mondly.com |
Numbers Game Limited numbersgame.uk | football prediction stats | — | #1forebet.com #2smartbettingstats.com #3footystats.org |
Fidelatoo fidelatoo.fr | loyalty card app | — | #1play.google.com #2optculture.com #3apps.apple.com |
Mirra mirra.my | AI marketing content creation | — | #1marketermilk.com #2getblend.com #3jasper.ai |
OpenClaw Kit turbostarter.dev/openclaw | AI wrapper starter kit | — | #1anotherwrapper.com #2startkit.ai #3turbostarter.dev |
Souls.zip souls.zip | AI agent marketplace | — | #1cloud.google.com #2oracle.com #3aiagentsdirectory.com |
Arcton arcton.com | sales lead finder | — | #1instantly.ai #2saleshandy.com #3salesforce.com |
ControlResell controlresell.com | reselling automation software | — | #1nifty.ai #2vendoo.co #3reddit.com |
Adspirer adspirer.com | AI ad management | — | #1adroll.com #2adcreative.ai #3smartly.io |
Aleister thealeister.com | AI agent orchestration | — | #1ibm.com #2kdnuggets.com #3learn.microsoft.com |
Distribb distribb.io | AI SEO automation | — | #1marketermilk.com #2wpseoai.com #3reddit.com |
LUCIDE AI lucide.ai | AI content detector | — | #1quillbot.com #2copyleaks.com #3grammarly.com |
Local SEO Bot localseobot.com | Google Maps ranking | — | #1workspace.google.com #2support.google.com #3mapranks.com |
FIVEMANAGE AS fivemanage.com | game server CDN | — | #1gcore.com #2reddit.com #3medium.com |
Visor visorfinance.app | personal finance app | — | #1pcmag.com #2mint.intuit.com #3reddit.com |
BERACE berace.app | F1 MotoGP prediction game | — | #1spark.mwm.ai #2play.google.com #3predictor.motogp.com |
Strive Hybrid strivehybrid.com | athletic recovery tracking | — | #1forbes.com #2whoop.com #3garmin.com |
Attivita24 attivita24.com | buy sell business Italy | — | #1meretdemeures.com #2businessesforsale.com #3dealstream.com |
Setter AI LLC trysetter.com | AI appointment booking | — | #1synthflow.ai #2zapier.com #3calendly.com |
internalOS.ai internalos.ai | AI product team | — | #1hbr.org #2reddit.com #3reforge.com |
PowerIn powerin.io | LinkedIn automation | — | #1heyreach.io #2linkedhelper.com #3meetalfred.com |
LarryBrain - Openclaw Marketplace larrybrain.com | AI agent, OpenClaw, skills marketplace, AI tools | — | #1github.com #2openclaw.ai #3reddit.com |
Think again gojiberry.ai | AI lead generation software | — | #1seamless.ai #2upwork.com #3instantly.ai |
Cash Cow INC gojiberry.ai | AI lead generation software | — | #1seamless.ai #2upwork.com #3instantly.ai |
The startups that own their keywords
Supliful (Brand On Demand) ranks #1 for "supplement dropshipping supplier" with their homepage. They're not gaming SEO with blog posts or listicles. Their product page is the answer to the SEO target keyword. Stan's blog post "Best Link in Bio Platforms for Creators and Businesses" ranks #1 for "creator store link in bio monetization". They're writing the comparison page that potential customers use to evaluate alternatives.
Two different strategies, same result: owning the search term that their customers type into Google.
The one "losing" the SEO battle
Rezi claims 4 million users in their title tag. They have 11,650 active subscribers. For "AI resume builder," they're not even in the top 8 results. Canva is #1. Then Teal, ResumeBuild, a Reddit thread, Resume-Now, MyPerfectResume, Kickresume.
Canva isn't even a dedicated resume builder. It's a general design tool. But it has massive domain authority and a targeted landing page. Rezi's challenge isn't product quality (they have 8% growth MoM and 11,650 active subscribers), it's SEO visibility against companies with orders of magnitude more domain authority.
But I looked into it, and Rezi isn't exactly struggling. Their founder Jacob Jacquet started the company in 2015 as a 23-year-old English teacher in South Korea. A Reddit post about his resume template got 30,756 upvotes and 11,000 signups in a day. He integrated GPT-3 in December 2020, two years before ChatGPT launched. When ChatGPT went mainstream in early 2023, Rezi was already there: 65% of their first million users signed up in just three months.
They don't rank for "AI resume builder" because they aren't really targeting it. Instead they have 900+ pages for specific roles: "software engineer resume", "nurse resume", resignation letter templates. One resignation letter post alone drives 100K monthly clicks. They launched on Product Hunt 8 times, ran deals on AppSumo during COVID, and got placed in the New York Post and CNBC through a StackCommerce partnership. All with $0 in ad spend.
Not ranking for the obvious keyword isn't killing them. They found other ways in.
The weight class mismatch
GojiberryAI is at $177K MRR, growing 87% month-over-month. Searching for "AI lead generation software" returns Seamless.ai, Instantly.ai, and Upwork roundups. These aren't just SEO competitors. They're direct competitors, selling to the same salespeople. But they're much bigger, with much more domain authority. When the first page is all established platforms and high-authority listicles, you probably can't SEO your way in. Which might explain why GojiberryAI runs Facebook Pixel: paid ads instead of trying to outrank Seamless.ai.
How they got there
I dug into what the startups dominating their search terms are actually doing, and it's not one clever trick. It's content. A lot of it.
Supliful's #1 ranking isn't just a well-optimized homepage. Behind it, they have product category landing pages for skincare, fitness, hair care, sleep supplements. Solution pages for specific buyer segments: Shopify store owners, Amazon sellers, agencies, gyms, content creators. A blog with 33 pages of posts, including interactive calculator tools (CLV calculator, break-even ROAS calculator, Shopify profit calculator), "how [famous brand] became successful" series targeting brand name searches, and market research guides for every product vertical they serve. They're covering every angle someone might Google before deciding to start a supplement brand.
Stan is doing the same thing. 3-5 blog posts a week. Creator bios of famous YouTubers and TikTokers to capture name searches. Comparison pages against every competitor (Stan vs. Linktree, Stan vs. Kajabi, Stan vs. Gumroad). Platform-specific growth guides. Case studies featuring creators at every stage, from 4,000 followers to 2.8 million. IRL events in multiple cities. A $100K challenge. They even built an AI Instagram growth agent called Stanley and wrote content around it.
None of this is out of this world. Landing pages, comparison posts, how-to guides, case studies. The kind of pages anyone can create. Many of these startups are doing it at a scale that most solo founders (myself included) aren't. Sure, they most certainly have a team of people.
You don't need a whole marketing team
Dmytro Krasun builds ScreenshotOne, a screenshot API, solo. I've been following him on Twitter since before he started ScreenshotOne. He's currently at $25K MRR and 800+ paying customers, so I was around for the whole ride as he calmly built something useful in public, sharing his perspectives along the way.
I will probably forever call it Twitter.
Today, ScreenshotOne.com has hundreds of pages. Dozens of use-case landing pages, each targeting a specific job-to-be-done. 23 integration pages. 7 programming-language-specific API landing pages. 20+ customer stories co-written with customers. Comparison posts. Technical tutorials that intercept developers right at the "build vs. buy" decision point. Free tools like an Open Graph debugger that ranked on Google within a day and drove thousands of visits. A Chrome extension that doubled as a strong backlink from the Chrome Web Store. He even targets Puppeteer and Playwright error messages so that developers googling their bugs find ScreenshotOne as the alternative.
Same playbook as Stan and Supliful. Landing pages, comparison posts, how-to guides. But one person.
I have one product that already makes $25K+ MRR and yet I do what he described to build a new profitable project (again): 1. I built a tiny tool to debug open graph tags and images (OpenGraphDebug.com). 2. I share it everywhere. 3. I built an extension to get a backlink for it. 4. Once it gets enough traffic, I hope I can redirect it to a new paid product and it will convert. There is no magic. No overnight success. A lot of boring and dumb work. And if it doesn't work, at least I have a source of traffic for my other experiments. And I will repeat it for a different niche.
How to start becoming a solo entrepreneur: Build small side projects, finish and polish them (aim for less than 2 weeks), making them well-scoped, functional small products. Then move on to creating more small products, gradually increasing complexity and adding payment options
Who's buying ads on their keywords?
Organic rankings show who earns visibility. Using the same keywords to search
Google can also show us who's buying it. With webscraperapi's /google_ads
endpoint we can see the paid side of the competitive landscape.
I think Comp AI is trying to rank for "AI compliance software". Their site mentions SOC 2, HIPAA, GDPR, ISO 27001. Let's see who's buying ads on "SOC 2 compliance software":
curl -s -G "https://api.webscraperapi.ai/v1/google_ads" \
-H "Authorization: Bearer $WEBSCRAPERAPI_API_KEY" \
--data-urlencode "output=json" \
--data-urlencode "query=SOC 2 compliance software"[
{
"position": 1,
"title": "Get Compliant in 15 Hours - No Generic SOC 2 Checklists",
"url": "https://delve.co/product/framework/soc-2",
"description": "AI completes security questionnaires fast so you don't waste founder time...",
"displayed_link": "https://www.delve.co"
},
{
"position": 2,
"title": "SOC 2 Compliance by Vanta",
"url": "https://www.vanta.com/landing/soc-2-compliance-software",
"description": "The Fast, Trusted Way to Get a SOC 2 Report. Over 15000 Companies Trust Vanta...",
"displayed_link": "https://www.vanta.com"
},
{
"position": 3,
"title": "SOC 2 Made Easy - SOC 2 for Type I & Type II",
"url": "https://try.drata.com/product/soc-2",
"description": "One Platform for SOC 2 Compliance Automation — No Spreadsheets, No Guesswork.",
"displayed_link": "https://try.drata.com"
},
{
"position": 4,
"title": "Budget friendly SOC2 in days",
"url": "https://sprinto.com/frameworks/soc-2/",
"description": "Clear Pricing. No Hidden Costs — Map controls once. Monitor continuously. Prove SOC 2...",
"displayed_link": "https://www.sprinto.com"
},
{
"position": 5,
"title": "Hassle-Free SOC 2 Compliance",
"url": "https://info.thoropass.com/soc-2",
"description": "Need SOC 2 Compliance Fast? SOC 2 compliance made simple with enterprise-grade software from Thoropass.",
"displayed_link": "https://info.thoropass.com"
}
]Five advertisers fighting over Comp AI's exact keyword. Delve, Vanta, Drata, Sprinto, Thoropass. All well-funded compliance platforms. And no Comp AI ad.
Is this the same for the other startups? I asked Clawie to check Google Ads for all 200 keywords:
| Company | SEO target keyword | Ads | Own ad? | Advertisers |
|---|---|---|---|---|
Gumroad gumroad.com | sell digital products online | 6 | No | ads.reddit.comshopify.comwise.comsquarespace.com+2 |
easytools easycart.pl | digital products shopping cart | 6 | No | try.samcart.comshopify.compaypal.cominstacart.com+2 |
Comp AI trycomp.ai | AI compliance automation software | 6 | No | delve.cocredo.aiiru.comvanta.com+2 |
Rezi rezi.ai | AI resume builder | 6 | No | myperfectresume.comresume-now.comresume.ioforbes.com+2 |
PressWhizz presswhizz.com | link building marketplace | 6 | Yes | nobsmarketplace.comicopify.coget.rhinorank.iopresswhizz.com+2 |
SEOBOT seobotai.com | AI SEO automation | 6 | No | searchatlas.comaio.webimax.comsemrush.comgrowthx.ai+2 |
Postiz postiz.com | social media scheduling tool | 6 | No | later.combrandwatch.comconstantcontact.comsproutsocial.com+2 |
Teachizy teachizy.fr | online course creation platform | 6 | No | absorblms.comtrainercentral.comvoltrahk.learnworlds.comarticulate.com+2 |
OpenClaw Pro openclaw.new | deploy AI chatbot | 6 | No | fin.aiibm.comtoptal.comaws.amazon.com+2 |
Donely donely.ai | OpenClaw hosting management | 6 | No | bluehost.comhostinger.comus.cybernews.comagents.pinata.cloud+2 |
VEX Wallet vexwallet.co | send money from USA internationally | 6 | No | xe.comremitly.commoneygram.comofx.com+2 |
ConvertLabs convertlabs.io | service business booking software | 6 | No | housecallpro.comfieldpulse.comgetjobber.comfieldworkhq.com+2 |
Calendesk calendesk.com | appointment scheduling software | 6 | No | qnomy.comtry.timetap.comathenahealth.commindbodyonline.com+2 |
notis.ai notis.ai | AI task automation assistant | 6 | No | aws.amazon.combase44.comrunmyjobs.redwood.comibm.com+2 |
StoryShort storyshort.ai | AI faceless video generator | 6 | No | openart.aifaceless.videotoolkit.artlist.ioblipix.pro+2 |
Fiddl.art fiddl.art | AI art generator | 6 | No | chatgpt.comopenart.aigemini.google.comtoolkit.artlist.io+2 |
POST BRIDGE post-bridge.com | social media scheduling software | 6 | No | brandwatch.comsproutsocial.comconstantcontact.commonday.com+2 |
RankAI rankai.ai | AI SEO agency | 6 | No | hawksem.comblackpropeller.comredolive.comtripledart.com+2 |
Evergreen Support, LLC evergreensupport.co | outsourced customer support | 6 | No | hugoinc.comsupportninja.comtranscom.comfive9.com+2 |
Vibe3D AI vibe3d.ai | AI 3D rendering | 6 | No | magicpatterns.commeshy.aiartlist.iochaos.com+2 |
Book The Move bookthemove.com | moving company leads | 6 | No | salesgenie.comgohighlevel.comnetpeak.uswhatconverts.com+2 |
ChatSEO chatseo.app | SEO analytics tool | 6 | No | semrush.comseranking.comagencyanalytics.comsupermetrics.com+2 |
Hirevire hirevire.com | video screening software | 6 | No | criteriacorp.comgo.sparkhire.comparadox.aitestgorilla.com+2 |
Lancer.app lancer.app | Upwork automation tool | 6 | No | getmany.comsmartsheet.commyearlybird.aicertinia.com+2 |
DIRECT AI directai.app | AI YouTube video creator | 6 | No | toolkit.artlist.iozeely.aiinvideo.ioopenart.ai+2 |
Private Location Intelligence API platform example.com | location intelligence API | 6 | No | kalibrate.comlatapult.comradar.comaws.amazon.com+2 |
SetSmart setsmart.io | AI appointment booking | 6 | No | connex.aizenoti.comathenahealth.combase44.com+2 |
Yakkr Growth yakkrgrowth.com | Twitch stream growth tools | 6 | No | streammarketer.comviewbots.comfiverr.comtop4smm.com+2 |
BDM Business benasleo.com | SEO services | 6 | No | semrush.comforbes.comstraightnorth.comsmartsites.com+2 |
Zero G zerogtrading.com | trading algorithms software | 6 | No | tastytrade.comintellectia.aicapterra.comcapitalmarkets.fidelity.com+2 |
CodeFast codefa.st | learn coding online | 6 | No | devry.edugo.graduate.newmanu.educodingtemple.combrilliant.org+2 |
Pitchlo pitchlo.com | UGC creator marketplace | 6 | No | cohley.comcollabstr.comads.reddit.compopularpays.com+2 |
Faceless, LLC faceless.so | AI faceless video generator | 6 | No | zeely.aiblipix.protoolkit.artlist.ioopenart.ai+2 |
EverFlame Design everflamedesign.com | UI UX design studio | 6 | No | swovo.comthenorm.designtoptal.comofficeofexperience.com+2 |
GenPPT genppt.com | AI presentation maker | 6 | No | beautiful.aigenspark.aimanus.imworkassets.ai+2 |
StartClaw startclaw.com | AI chatbot platform | 6 | No | fin.aiintercom.comzoho.comada.cx+2 |
MapPack ToolBox mappacktoolbox.com | local SEO tools | 6 | No | birdeye.comsemrush.commerchynt.combrightlocal.com+2 |
Souls.zip souls.zip | AI agent marketplace | 6 | No | productsup.comibm.comtavily.commoltify.ai+2 |
Distribb distribb.io | AI SEO automation | 6 | No | semrush.comworkato.compartner.bigeyeagency.comallsearch.io+2 |
FIVEMANAGE AS fivemanage.com | game server CDN | 6 | No | fastly.comaws.amazon.comus.ovhcloud.comcloudflare.com+2 |
Setter AI LLC trysetter.com | AI appointment booking | 6 | No | getmagic.comconnex.aiathenahealth.comzenoti.com+2 |
Stan stan.store | creator store platform | 5 | No | business.adobe.comkajabi.comshopify.combase44.com+1 |
Tailride tailride.so | automated invoice processing | 5 | No | medius.combill.comramp.combill.com+1 |
Coral coral.inc | AI agents automation | 5 | No | dialpad.comscribe.comfin.aidialpad.com+1 |
Guidejar guidejar.com | interactive walkthrough software | 5 | No | go.whatfix.comproductfruits.comscribe.comgo.whatfix.com+1 |
Arcton arcton.com | sales lead finder | 5 | No | salesgenie.compipedrive.comzoominfo.compipedrive.com+1 |
Local SEO Bot localseobot.com | Google Maps ranking | 5 | No | merchynt.comnetrocket.prosemrush.commerchynt.com+1 |
Brand On Demand, Inc. supliful.com | supplement dropshipping supplier | 4 | No | ondemandfulfillment.comads.supliful.comrocktomic.comgenstore.ai |
Stack Influence stackinfluence.com | micro influencer marketing platform | 4 | Yes | stackinfluence.compopularpays.comglewee.comads.reddit.com |
Vid.AI vid.ai | AI video generator | 4 | No | toolkit.artlist.ioopenart.aifirefly.adobe.comapp.pixverse.ai |
Launch Club launchclub.ai | Reddit marketing agency | 4 | No | redditmarketingagency.comdisruptiveadvertising.comredditmarketingagency.comaiminity.com |
Salesrobot, INC salesrobot.co | LinkedIn cold outreach automation | 4 | No | dripify.comartisan.coelevenlabs.iogoogle.com |
HVAKR hvakr.com | HVAC design software | 4 | No | h2xengineering.comsimprogroup.comsimscale.comcapterra.com |
Felix Craft felixcraft.ai | AI agent guides | 4 | No | ibm.comboomi.comnice.comsolace.com |
Roofclaw roofclaw.com | roofing operations software | 4 | No | ibeam.aizoho.comjobnimbus.comringopbx.com |
Lunchbreak lunchbreak.ai | AI detection bypass tool | 4 | No | grammarly.comtextguard.aijustdone.comlaunch.rewritely.co |
MyCater mycater.fr | catering delivery for companies | 4 | No | ezcater.comcorporate.grubhub.combusiness.doordash.comcookunity.com |
SOVEREIGN LEADS LIMITED theleadguy.online | lead generation trades construction | 4 | No | salesgenie.comthecontractorconsultants.commarketing.builderfunnel.comnetworx.com |
Dropkiller dropkiller.com | dropshipping product winners | 4 | No | autods.comshopify.comaccio.comdoba.com |
LocalRank.so localrank.so | local SEO software | 4 | No | semrush.commerchynt.commoz.comsoci.ai |
Sherpa mentoriasherpa.com | therapist mentorship training | 4 | No | togetherplatform.comthrivingcoachacademy.comcircleofsecurityinternational.comtogetherplatform.com |
CartBoss cartboss.io | abandoned cart recovery SMS | 4 | No | klaviyo.commailchimp.comconstantcontact.comtextedly.com |
BuildMyAgent.io buildmyagent.io | AI agent builder platform | 4 | No | fin.aibase44.comsalesforce.combusiness.adobe.com |
ChatDash, LLC chat-dash.com | build sell AI services | 4 | No | chargebee.combase44.comsalesforce.comibm.com |
TrustMRR trustmrr.com | startup revenue database | 4 | No | cbinsights.compitchbook.comzoominfo.comalpha-sense.com |
Sleek sleek.design | AI app design mockup generator | 4 | No | retool.combase44.comuxpilot.aifigma.com |
setupclaw setupclaw.com | AI assistant setup service | 4 | No | ibm.comringcentral.combairesdev.comupwork.com |
MedPilot medpilothq.com | medical practice AI automation | 4 | No | talkdesk.comdiscover.elationhealth.comdrchrono.comgenie.healow.com |
SEO STACK seo-stack.io | AI SEO tools platform | 4 | No | alliai.comsemrush.comblackpropeller.commoburst.com |
Karma karmabot.chat | employee recognition platform | 4 | No | workhuman.combonusly.comtremendous.comnectarhr.com |
Low Content AI lowcontent.ai | AI low content book creator | 4 | No | shakespeareai.braintastic.caglobalauthorshub.comtry.samcart.comsquibler.io |
Michael Veail theleadguy.online | lead generation trades construction | 4 | No | salesgenie.comthecontractorconsultants.commarketing.builderfunnel.comnetworx.com |
Pasul.ro pasul.ro | find therapist online | 4 | No | betterhelp.comcare.headway.coforbes.comrula.com |
AI MONEY GROUP aipersonamethod.com | AI business consulting | 4 | No | 10pearls.comorases.cominfo.affirma.comgenpact.com |
Buzzly AI heybuzzly.ai | AI ad creation | 4 | No | omneky.combusiness.adobe.comzeely.aimountain.com |
Rendler Studio Inc. rendlerstudio.com | architectural 3D rendering | 4 | No | fiverr.comomnisightinc.comhouzz.combowenstudios.com |
DM Champ dmchamp.com | AI sales assistant | 4 | No | ibm.comringcentral.commonday.comdevrev.ai |
Kassenmeister | AK Software GmbH kassenmeister.de | POS system software | 4 | No | top-posproviders.comget.shift4.comepicor.comtop10posproviders.com |
Rybbit rybbit.com | privacy analytics alternative | 4 | No | red-gate.comperforce.composthog.comdatagrail.io |
AppAlchemy appalchemy.ai | AI app design tool | 4 | No | base44.comfigma.comuxpilot.aimagicpatterns.com |
StoryHero storyhero.gg | auto cut long videos viral clips | 4 | No | wayin.aiveed.iovidiq.comcreator.reka.ai |
ZdjecieAI.pl zdjecieai.pl | AI photo generator | 4 | No | shutterstock.comchatgpt.comgemini.google.compicsart.com |
Catalister catalister.com | AI product research listing | 4 | No | perplexity.aiproductsup.comapps.shopify.comsemrush.com |
Stilo Media, LLC stilo.media | book publishing services | 4 | No | crescenthillpublishers.comamazonpublisherspro.compublishinghouseusa.comglobalauthorshub.com |
Visor visorfinance.app | personal finance app | 4 | No | robberger.comonboarding.rocketmoney.commoney.comboldin.com |
LarryBrain - Openclaw Marketplace larrybrain.com | AI agent, OpenClaw, skills marketplace, AI tools | 4 | No | servicenow.comaws.amazon.comsuperwise.aipages.dataiku.com |
TrustMRR trustmrr.com | startup revenue database | 4 | No | cbinsights.compitchbook.comzoominfo.comalpha-sense.com |
GojiberryAI gojiberry.ai | AI lead generation software | 3 | No | artisan.cozoominfo.com11x.ai |
Presscart presscart.com | AI PR opportunities platform | 3 | No | justreachout.iosemrush.comsolutions.accessnewswire.com |
Hack2hire hack2hire.com | software engineer interview prep | 3 | No | codepath.orgcodepath.orgkalacademy.com |
uhoh.com uhoh.com | IT support services | 3 | No | zazz.iozazz.iogoogle.com |
Reddit Agency redditagency.com | Reddit marketing agency | 3 | No | redditmarketingagency.comredditmarketingagency.cominfo.adverity.com |
Czat.ai czat.ai | AI chatbot | 3 | No | ibm.comibm.comservicenow.com |
SMMDealFinder.com smmdealfinder.com | SMM client finder | 3 | No | lp.icuc.socialzoominfo.comads.reddit.com |
Prymatica prymatica.com | cold email outreach | 3 | No | instantly.aihypermail.comtheinboxco.com |
UX Magic Inc. uxmagic.ai | AI UI design generator | 3 | No | google.comclaude.aibase44.com |
Produktstudio.ai produktstudio.ai | AI product photography generator | 3 | No | google.comzeely.aiomneky.com |
Mirra mirra.my | AI marketing content creation | 3 | No | business.adobe.comoptimizely.comblaze.ai |
ControlResell controlresell.com | reselling automation software | 3 | No | zoho.comibm.comwealthtreksoftware.com |
Adspirer adspirer.com | AI ad management | 3 | No | groas.aibusiness.adobe.commountain.com |
Think again gojiberry.ai | AI lead generation software | 3 | No | artisan.cozoominfo.com11x.ai |
Cash Cow INC gojiberry.ai | AI lead generation software | 3 | No | artisan.cozoominfo.com11x.ai |
TrimRx trimrx.com | personalized weight loss program | 2 | No | weightwatchers.comnourish.com |
1Capture 1capture.io | trial to paid conversion | 2 | No | semrush.comwhatconverts.com |
HypeProxies hypeproxies.com | proxy infrastructure provider | 2 | No | iproyal.comoxylabs.io |
Defined Chase definedchase.com | digital marketing agency services | 2 | No | ebizondigital.comdigitalsilk.com |
Shugert Marketing shugert.com.mx | Shopify marketing analytics | 2 | No | adverity.comhaus.io |
Dealsourcr Ltd dealsourcr.com | AI property deal finder | 2 | No | investor-marketplace.lennar.comreonomy.com |
AEO Engine aeoengine.ai | answer engine optimization | 2 | No | sell.g2.comopticl.ai |
MaidsnBlack maidsinblack.com | house cleaning service | 2 | No | clean.maidpro.comsuperhomemaid.com |
Codédex codedex.io | learn coding for beginners | 2 | No | devry.eduonline.coloradotech.edu |
Indexsy indexsy.com | SEO growth agency | 2 | No | revenuewell.comstraightnorth.com |
Corsidia corsidia.com | find online courses | 2 | No | devry.eduonline.coloradotech.edu |
Angel Match angelmatch.io | investor database startup funding | 2 | No | try.pitchbook.compilot.com |
Simple Analytics simpleanalytics.com | privacy-focused analytics platform | 2 | No | posthog.commarketing.ethyca.com |
Brevilabs brevilabs.com | AI human collaboration tools | 2 | No | smartsheet.comibm.com |
Draft AI getdraft.io | social media content generator | 2 | No | sintra.aicreatify.ai |
Draft AI getdraft.app | AI content writing tool | 2 | No | fyxer.comarticulate.com |
Supergrow supergrow.ai | LinkedIn personal branding AI | 2 | No | claude.aisintra.ai |
Liinks liinks.co | link in bio page builder | 2 | No | squarespace.comgoogle.com |
Brainrot.mov brainrot.mov | viral AI video generator | 2 | No | openart.aicreatify.ai |
Vidgenie.ai vidgenie.ai | AI video generator | 2 | No | elements.envato.comopenart.ai |
Replayed LTD replayed.co | hire YouTube video editor | 2 | No | theeditorsconnection.comupwork.com |
DataFast datafa.st | marketing attribution analytics | 2 | No | adverity.commeasured.com |
Ari Horesh entermedschool.com | medical school advisor | 2 | No | inspiraadvantage.comscholr.consulting |
AI Labs tradenote.io | trading strategy backtester | 2 | No | interactivebrokers.comcaligoapp.com |
Saaspa.ge saaspa.ge | product launch platform | 2 | No | superside.cominfo.adverity.com |
Plutio (Super Work AI) plutio.com | all-in-one business management | 2 | No | quickbooks.intuit.comproductive.io |
Tree Nerd Academy treenerdacademy.com | ISA arborist exam prep | 2 | No | mometrix.comaudible.com |
AutoContent API autocontentapi.com | AI podcast generator | 2 | No | start.elevenlabs.iospeechify.com |
Altitude Cleaning Crew altitudecleaningcrew.com | house cleaning services | 2 | No | superhomemaid.comclean.maidpro.com |
Digitiz.fr digitiz.fr | web business tools | 2 | No | quickbooks.intuit.commonday.com |
Virlo virlo.ai | TikTok analytics | 2 | No | heyrostr.comtriplewhale.com |
Tribe Social tribesocial.io | community app builder | 2 | No | base44.comkintone.com |
Mig mig.lemonsqueezy.com | productivity software | 2 | No | monday.comatlassian.com |
LinkPost linkpost.gg | LinkedIn content creator | 2 | No | sproutsocial.comfiverr.com |
OVER THE PLANET overtheplanet.com | vacation packages | 2 | No | priceline.comexpedia.com |
Bookedin bookedin.ai | lead nurturing automation | 2 | No | pipedrive.comleandata.com |
BlogToPin blogtopin.com | Pinterest automation tool | 2 | No | merivoflow.comswydo.com |
QR Code AI qrcode-ai.com | AI QR code generator | 2 | No | bitly.comqrcodecreator.com |
Apiframe apiframe.ai | unified AI media API | 2 | No | snaplogic.comltx.io |
Esferas.io esferas.io | LinkedIn automation tool | 2 | No | business.linkedin.comzoominfo.com |
Data Bloo databloo.com | Looker Studio templates | 2 | No | monday.combase44.com |
ToolScale toolscale.io | all-in-one AI tools | 2 | No | microsoft.combase44.com |
SideQuest - B2C Finance SaaS joinsidequest.com | paid user studies | 2 | No | freecash.comearnhaus.com |
Superbullet, LLC superbulletstudios.com | Roblox game development | 2 | No | hello.fullsail.eduudemy.com |
Sandimax sandimax.com | software development | 2 | No | devry.eduitransition.com |
PipeLime pipelime.ai | AI sales automation | 2 | No | connex.ailightfield.app |
ChatEDU Inc. chatedu.io | AI study tools | 2 | No | notebooklm.googlesolvely.ai |
Enquiry Genie enquirygenie.ai | Airbnb optimization tools | 2 | No | guesty.comhello.pricelabs.co |
Marea Alcalina mareaalcalina.com | digital catalog WhatsApp | 2 | No | catalogy.comcatalogy.com |
Aleister thealeister.com | AI agent orchestration | 2 | No | union.aiibm.com |
Strive Hybrid strivehybrid.com | athletic recovery tracking | 2 | No | humehealth.comwurq.io |
internalOS.ai internalos.ai | AI product team | 2 | No | usepylon.comibm.com |
Avenue Ticketing, Inc. avenueticket.com | buy event tickets online | 1 | No | stubhub.com |
BackPedal Ltd backpedal.co | ebike theft protection | 1 | No | velosurance.com |
LLM Gateway llmgateway.io | LLM API routing platform | 1 | No | fireworks.ai |
Kortex-Notebooklm kortex-notebooklm.com | NotebookLM knowledge management | 1 | No | servicenow.com |
IBERGOUR ibergour.com | Spanish jamón ibérico online | 1 | No | ibericoclub.com |
AE-intelligence humanizeaitext.ai | humanize AI text detector | 1 | No | grammarly.com |
WaLead AI walead.ai | LinkedIn automation tool | 1 | No | business.linkedin.com |
Yeema LTD yeema.co | startup design agency | 1 | No | superside.com |
Yaak yaak.app | API client | 1 | No | newrelic.com |
Synta synta.io | n8n workflow automation AI | 1 | No | n8n.io |
FindClout findclout.com | meme page advertising | 1 | No | ads.spotify.com |
Ave Rides LLC averides.com | book local rides | 1 | No | get.gogograndparent.com |
RTMP.IN rtmp.in | stream Instagram from computer | 1 | No | restream.io |
SyncForge trysyncforge.xyz | music sync licensing software | 1 | No | capterra.com |
OpenClaw Kit turbostarter.dev/openclaw | AI wrapper starter kit | 1 | No | base44.com |
LUCIDE AI lucide.ai | AI content detector | 1 | No | grammarly.com |
Attivita24 attivita24.com | buy sell business Italy | 1 | No | globalization-partners.com |
Kitze kitze.io | developer education platform | None | — | — |
Cometly cometly.com | marketing attribution software | None | — | — |
REACT Studios™ reactstudios.com | online gaming community platform | None | — | — |
Claw Mart shopclawmart.com | AI assistants app store | None | — | — |
PROSP prosp.ai | LinkedIn automation AI | None | — | — |
DataExpert / TechCreator dataexpert.io | data engineering online courses | None | — | — |
Doors Delivered doorsdelivered.com | interior doors online UK | None | — | — |
React Bits Pro pro.reactbits.dev | React UI components library | None | — | — |
STELLA PROXIES stellaproxies.com | residential proxy service | None | — | — |
Talefy talefy.ai | AI story generator | None | — | — |
Capgo capgo.app | Capacitor app live updates | None | — | — |
SuperX superx.so | X Twitter growth tool | None | — | — |
Conductor conductor.is | QuickBooks Desktop API | None | — | — |
Parakeet Chat parakeet.chat | inmate communication app | None | — | — |
Advise.so advise.so | marketing community membership | None | — | — |
Orel Zilberman, LLC substack.com/@orelzilberman | Substack creator tools | None | — | — |
ForYouGaming Inc. foryougaming.com | online gaming platform | None | — | — |
Dotmarket.eu - Achat / vente de business web dotmarket.eu | buy sell digital business | None | — | — |
Analytics Mates analyticsmates.com | Google Analytics 4 help | None | — | — |
*** OF PROMPT OÜ godofprompt.ai | best AI prompts library | None | — | — |
Aymo AI aymo.ai | all-in-one AI platform | None | — | — |
ClaudeKit claudekit.cc | AI development workflows | None | — | — |
Cure My Swing shop.curemyswing.com | golf swing tips | None | — | — |
Nordgard nordgard.nl | coworking space Groningen | None | — | — |
Prototipal prototipal.com | API integration platform | None | — | — |
ShipFast shipfa.st | NextJS startup template | None | — | — |
Jake Marine repvision.app | sales team management software | None | — | — |
The Brazil Girl thebrazilgirl.com | learn Portuguese online | None | — | — |
Numbers Game Limited numbersgame.uk | football prediction stats | None | — | — |
Fidelatoo fidelatoo.fr | loyalty card app | None | — | — |
BERACE berace.app | F1 MotoGP prediction game | None | — | — |
PowerIn powerin.io | LinkedIn automation | None | — | — |
So who is spending money on these keywords? Mostly established players, showing up across multiple keyword spaces:
Most frequent advertisers
Domains appearing most often in Google Ads across startup SEO target keywords
Turns out it's not just Comp AI not buying visibility on Google. Out of 200 startups, we only found 2 buying ads on the SEO target keywords we think they're trying to rank for: Stack Influence and PressWhizz.
It's also possible that the SEO target keywords we inferred were not 100% correct.
For Stan and Supliful, that's smart. They already rank #1 organically. Paying for ads would be buying traffic they already get for free.
Rezi's landing page isn't even in the top 8 for "AI resume builder", and the companies buying ads on that keyword (Resume-Now, MyPerfectResume, Forbes) are all well-funded incumbents. But as we saw earlier, Rezi has 900+ role-specific pages ranking for things like "nurse resume" and "software engineer resume". They don't need their landing page on the first page for the generic search keywords. Their role-specific pages already bring in the traffic.
For Gumroad, Shopify and Squarespace own the "sell digital products" ad space. That's a $100B company and a public company. Different league entirely.
* * *
Takeaways
Which web framework you pick doesn't matter. Gumroad does $7M/month on Rails. Stan does $3M/month and runs three different stacks: Vue.js for the marketing site, WordPress for the blog, and React with Vite for the actual app. They probably didn't overthink it. They picked whatever made sense for each part and moved on.
But knowing what tech stack a company runs on can be really valuable. Their analytics tools tell you how they measure growth. Their ad pixels tell you how they acquire customers. Their CRM integrations tell you who they sell to. Knowing a bunch of companies running old versions of WordPress is a gold mine if you're a marketing agency looking to offer your services. Having the full picture of what a company runs on is competitive intelligence.
Putting yourself out there, and being useful on the internet exposes you to really big upsides. That's the gap I'm taking away from this. I need to be writing more. Way more.
Content, content, content! — Steve Ballmer, probably
As a software engineer, I love building things. It feels really different now with AI compared to the old times of writing code by hand, but it's still really satisfying to solve problems with code.
But code doesn't matter if no one knows about it.
In the same way that sunlight is the best disinfectant, putting yourself out there, writing about your product, teaching people how to use it, not only helps by actually getting people to notice it and check it out, but can also reveal which ideas are not great, and which are promising. It gives you information to either pivot, abandon, or double down.
And it doesn't have to look the same for everyone. Kitze spent a decade being helpful on the internet and building different products before launching a paid community. Dmytro built a solid product and backed it up with dozens of landing pages, customer stories and more recently free tools for ScreenshotOne. Rezi was ahead of time by using GPT-3 in 2020, and wrote almost a thousand pages for specific roles.
So, put the work in: build something useful, and expose yourself to luck.
* * *
The TrustMRR dataset has 5,372 startups (as of March 16th 2026). I mostly focused on the top 200 by revenue. I'm sure there are other things to learn from the other startups too. For example, are there startups that are both A) having stagnant revenue and B) doing lots of marketing? Also, doing some statistics and finding meaningful correlations to revenue. This article got pretty long so I decided to stop at where it did.
If you wanna try any of this yourself, the webscraperapi docs cover all the endpoints I used here. I'd love to see what you use it for!
No credit card required.
Download the enriched top 200 TrustMRR database
All 200 startups with their tech stacks, SEO metadata, SEO target keywords, organic rankings, and paid competitor data.
- Technology detection results for every site
- SEO metadata and SEO target keywords
- Google Search rankings and Google Ads competitors
Written by
Murilo Pereirawebscraperapi.ai founder