BetaList Startup Scraper avatar

BetaList Startup Scraper

Pricing

from $3.00 / 1,000 startup extracteds

Go to Apify Store
BetaList Startup Scraper

BetaList Startup Scraper

Extract startup listings from BetaList: name, tagline, description, topics, makers, and featured date. No proxy needed. Browse all recent launches or filter by category.

Pricing

from $3.00 / 1,000 startup extracteds

Rating

0.0

(0)

Developer

Obsidian IT Consulting SRL

Obsidian IT Consulting SRL

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

7 days ago

Last modified

Share

Extract startup listings from BetaList, the early-stage startup discovery platform. Get names, taglines, descriptions, topics, makers, and featured dates for any startup on the platform.

What you get

FieldDescription
nameStartup name
taglineOne-line description
descriptionFull description paragraph
topicsCategory tags (e.g. "AI Tools", "SaaS", "Productivity")
makersFounder/maker names
featuredDateDate featured on BetaList
betalistUrlDirect link to the BetaList listing
visitRedirectUrlBetaList redirect to the startup website
websiteActual startup URL (only if includeWebsite: true)
logoUrlStartup logo image URL
slugBetaList slug identifier

Use cases

  • Lead generation: find early-stage founders to reach out to before they go mainstream
  • Market research: monitor which startup categories are trending on BetaList
  • Competitive intelligence: track new entrants in your product category
  • Newsletter/digest: curate recent launches by topic for your audience
  • Investor sourcing: discover pre-seed startups filtered by category

Modes

Browse (default)

Scrape all recent startups from the BetaList homepage:

{
"mode": "browse",
"maxItems": 100
}

Category

Scrape startups from specific categories. Find category slugs at betalist.com/browse:

{
"mode": "category",
"categories": ["ai/ai-tools", "productivity/saas", "data-analytics/analytics"],
"maxItems": 200
}

Specific URLs

Scrape a list of specific startup pages:

{
"mode": "urls",
"startUrls": [
"https://www.betalist.com/startups/fliptip-ai",
"https://www.betalist.com/startups/markty"
]
}

Monitoring mode (watchlist)

Turn the scraper into a recurring new-launch monitor. Set deltaMode: true, schedule it, and add a webhook. Each run returns only the startups that appeared since your last run, so you get alerted the moment something new launches.

{
"mode": "browse",
"deltaMode": true,
"maxItems": 100
}
  • The first run sets a baseline (returns the current feed up to maxItems). Every run after that returns only genuinely new launches, often zero when nothing has launched, so you only pay for real signal.
  • State is stored per account, so your watchlist is private to you.
  • Rotating BOOSTED promo cards are automatically excluded; they are ads, not new launches.
  • Combine with mode: "category" to watch a specific niche (e.g. only new AI tools).

Prefer a fixed date range instead of stateful tracking? Use createdAfter:

{ "mode": "browse", "createdAfter": "2026-06-01", "maxItems": 200 }

Example output

{
"name": "Markty",
"tagline": "Hire an AI team that runs content, social, SEO, and emails",
"description": "Markty lets founders delegate their entire marketing stack to AI agents...",
"slug": "markty",
"betalistUrl": "https://www.betalist.com/startups/markty",
"visitRedirectUrl": "https://www.betalist.com/startups/markty/visit",
"topics": ["Marketing Automation", "Social Media Management", "Content Marketing", "Email Marketing"],
"makers": ["Sinan"],
"featuredDate": "May 30, 2026",
"logoUrl": "https://cdn.betalist.com/..."
}

Options

OptionTypeDefaultDescription
modestringbrowsebrowse, category, or urls
categoriesstring[][]Category slugs for category mode
startUrlsstring[][]BetaList startup URLs for urls mode
maxItemsinteger100Max startups to extract (0 = no limit)
includeWebsitebooleanfalseResolve the actual website URL (1 extra request/startup)
delayMsinteger500Delay between requests in milliseconds
createdAfterstring""Only return startups featured on/after this date (e.g. 2026-06-01)
deltaModebooleanfalseWatchlist mode: only return startups not seen on previous runs

Pricing

$3.00 per 1,000 startups ($0.003/startup). No proxy costs: BetaList serves public data without restrictions.

FAQ

Does it require login? No. BetaList startup listings are fully public.

How many startups are listed on BetaList? Thousands. The homepage shows ~50 recent ones; category pages add more with pagination.

Can I get the actual website URL? Yes, set includeWebsite: true. This adds one redirect-follow per startup (slightly slower).

What's the difference between tagline and description? Tagline is the short one-liner visible on listing cards. Description is the full paragraph on the startup's detail page.