VOOZH about

URL: https://apify.com/mambalabs/funding-press-signal-scanner

⇱ Company Funding News Press Signal Scanner Clay Enrichment Β· Apify


πŸ‘ Company Funding News Press Signal Scanner Clay Enrichment avatar

Company Funding News Press Signal Scanner Clay Enrichment

Pricing

from $25.50 / 1,000 results

Go to Apify Store

Company Funding News Press Signal Scanner Clay Enrichment

Scans Google News and PR wires for funding rounds, exec moves, product launches, and acquisitions at any company. Returns deduplicated, dated events in flat Clay-ready JSON for RevOps and outbound.

Pricing

from $25.50 / 1,000 results

Rating

0.0

(0)

Developer

πŸ‘ Mamba Labs

Mamba Labs

Maintained by Community

Actor stats

0

Bookmarked

4

Total users

3

Monthly active users

7 days ago

Last modified

Share

Give it a company domain, get back a clean list of that company's recent business events: funding rounds, executive moves, product launches, acquisitions, partnerships, and IPOs. The actor searches public news and press sources, classifies each story into a typed event, deduplicates the same event reported across multiple outlets, and returns one flat row per company. Built for Clay users, RevOps teams, and outbound agencies who want account signals without paying for a Crunchbase seat.

What's Inside

Ready-to-Run Examples

Each example is a pre-configured version of this actor for a specific use case. Click any link to open it in the Apify Console and run it immediately.

ExampleWhat it does
Recently Funded Company Check by DomainCheck whether a company recently raised funding.
Executive Move and New Hire News TrackerDetect executive moves and senior new hires in recent press.
Company Acquisition and M&A News FinderFind recent acquisition or M&A activity for a company.
Product Launch Announcement ScannerDetect recent product launch announcements in press coverage.
Bulk Funding Signal Scan for Account ListScan a list of domains to flag which accounts just raised funding.

Looking for a different configuration? Open the Input tab to build your own.

Features

  • One domain in, structured events out. Input stripe.com, get funding, exec, launch, M&A, partnership, and IPO events attributed to that company.
  • Six event types, classified for you. Each event is tagged funding_round, exec_move, product_launch, acquisition, partnership, ipo, with amount, currency, and funding stage pulled out when present.
  • Cross source deduplication. The same funding round reported by three outlets collapses into one event with a corroborating_source_count, so more sources means higher confidence, not more noise.
  • Subject relevance filter. Events are kept only when the company is the actual subject, not just mentioned. "Stripe raises" stays; "Stripe-backed startup raises" is dropped.
  • Multi source. Google News RSS is the primary source, with press wire coverage (PR Newswire, Business Wire, GlobeNewswire) and a DuckDuckGo pass layered on top. If a source is unreachable, it is skipped and the run still completes.
  • Clay native output. Flat JSON, snake_case, one row per company. Read the summary fields for a quick answer or unnest the events array for event level workflows.
  • Per company summary. has_recent_funding, latest_event_date, funding_total_estimated, and most_recent_headline give you a usable signal in a single field, no parsing required.
  • No browser, no proxy, no API keys. Fast HTTP and RSS only.

Input

FieldTypeRequiredDefaultDescription
domainstringYesstripe.comCompany domain to scan, without https or www. The main input for single company runs and Clay per row enrichment.
company_namestringNo(derived from domain)Optional search hint. Use it when the domain does not match the brand name, for example domain deel.com with name Deel. Applied on single company runs.
domainsarrayNo(empty)Optional list of domains for batch runs. When set and non-empty, it overrides the single domain field.

Output

One row per company. The flat summary fields:

FieldTypeDescriptionExample
company_domainstringThe input domain, normalizedstripe.com
company_namestringProvided hint or derived from the domainStripe
total_eventsintegerCount of deduped events returned (up to 50)41
latest_event_datestringISO date of the most recent event2026-06-18
has_recent_fundingbooleanTrue if a funding event was found in the last 12 monthstrue
funding_total_estimatednumberEstimated sum of distinct raise amounts found in the last 12 months, in USD750000000
funding_total_currencystringCurrency of the funding total, normalized to USDUSD
most_recent_event_typestringType of the latest eventproduct_launch
most_recent_headlinestringHeadline of the latest eventStripe launches Tempo
eventsarrayArray of classified event objects (see below)[ {...} ]
sources_queriedarraySources that responded with data this run["google_news_rss", "press_wire_rss"]
run_datestringISO timestamp of the scan2026-06-21T12:00:00Z

Each object in the events array:

FieldTypeDescription
event_typestringOne of funding_round, exec_move, product_launch, acquisition, partnership, ipo
datestringISO date the article was published (a proxy for the event date)
headlinestringThe news headline
source_urlstringLink to the article
source_namestringPublisher name
amountnumberRaise amount in base currency units, funding events only
currencystringCurrency of the amount (USD, EUR, GBP)
funding_stagestringNormalized stage, for example seed, series_a, funding events only
namesarrayPeople named in the story, exec moves only, best effort
descriptionstringShort snippet from the article
corroborating_source_countintegerHow many sources reported this same event

Sample output (trimmed):

{
"company_domain":"ramp.com",
"company_name":"Ramp",
"total_events":41,
"latest_event_date":"2026-06-17",
"has_recent_funding":true,
"funding_total_estimated":750000000,
"funding_total_currency":"USD",
"most_recent_event_type":"product_launch",
"most_recent_headline":"Ramp Launches Applied AI Solutions",
"events":[
{
"event_type":"funding_round",
"date":"2026-04-15",
"headline":"Ramp in talks to raise $750M from GIC, Iconiq Capital",
"source_url":"https://news.google.com/...",
"source_name":"Fortune",
"amount":750000000,
"currency":"USD",
"funding_stage":"series_f",
"names":[],
"description":"...",
"corroborating_source_count":11
}
],
"sources_queried":["google_news_rss","press_wire_rss","duckduckgo"],
"run_date":"2026-06-21T12:00:00Z"
}

You can download the dataset in JSON, HTML, CSV, or Excel.

Pricing

This actor uses pay per event. You are charged once per company scanned, no matter how many events come back, so the cost per row is predictable for Clay and batch runs.

TierDiscountPer resultPer 1K results
Free (no plan)0%$0.030$30.00
Starter (Bronze)~5%$0.0285$28.50
Scale (Silver)~10%$0.027$27.00
Business (Gold)~15%$0.0255$25.50

Free tier: 25 results per month included. Upgrade to a paid Apify plan for unlimited runs.

Usage Examples

Apify Console / API

import{ ApifyClient }from'apify-client';
const client =newApifyClient({token:'YOUR_APIFY_TOKEN'});
const run =await client.actor('funding-press-signal-scanner').call({
domain:'stripe.com',
});
const{ items }=await client.dataset(run.defaultDatasetId).listItems();
console.log(items[0].has_recent_funding, items[0].total_events);

Clay Integration

  1. In your Clay table, add an enrichment and choose Apify (or call the actor through the HTTP API action).
  2. Map your domain column to the domain input.
  3. Run the actor. Each row returns one record.
  4. Pull the summary fields straight into columns: has_recent_funding, funding_total_estimated, most_recent_event_type, latest_event_date.
  5. For event level workflows, use Clay's unnest on the events array to expand one row per event.

Clay sends inputs as strings; the actor normalizes them, so you can map columns directly.

MCP Integration

$npminstall-g @mambalabsdev/mcp-funding-press-signal-scanner
{
"mcpServers":{
"funding-press-signal-scanner":{
"command":"npx",
"args":["-y","@mambalabsdev/mcp-funding-press-signal-scanner"],
"env":{"APIFY_TOKEN":"YOUR_APIFY_TOKEN"}
}
}
}

Then call the scan_funding_press_signals tool with a domain.

Prefer one install for the whole fleet? The Mamba Labs GTM Suite (https://www.npmjs.com/package/@mambalabsdev/mcp-gtm-suite) exposes eleven of these actors as tools in a single MCP server.

Error Handling

ConditionBehaviorOutput
One source times out, returns a challenge page, or is blockedThe source is skipped, the run continuesThat source is absent from sources_queried
No events found for the companyA valid row is returnedtotal_events is 0, has_recent_funding is false
No valid domain providedThe run exits without pushing a rowNo output, no charge
A date cannot be parsedThe event is still returneddate is null on that event

Limitations

  • Events come from news and press, so date is the article publish date, a close proxy for the actual event date.
  • funding_total_estimated is a rough sum of raise amounts detected in the last 12 months, not an all time funding total. News does not always let us separate rounds perfectly, so treat it as a signal, not an audited figure.
  • Company matching is keyword based. A company whose name is a common word, or whose name is shared by another firm (for example two different companies both called Ramp), can pick up some off target events.
  • Person names in exec_move events are best effort and not verified.
  • Up to 50 most recent events are returned per company.
  • Sources are public and English language, US edition. No login gated sources, no Crunchbase, no PitchBook.
  • No proxy is used by default. If blocking becomes a pattern, Google News RSS remains the primary, block resistant source.

FAQ

Is this legal? The actor reads public news and press pages only. It does not access login gated or paywalled sources, and it does not scrape Crunchbase or PitchBook.

How fresh is the data? Each scan looks back about 12 months and returns the most recent events first. Repeated scans of the same domain within 24 hours are served from cache.

Found a bug or want a field added? Open an issue on the actor's Issues tab.


Mamba Labs GTM Actor Fleet

ActorWhat it doesPrice/result
GTM Hiring Signal ScraperDetects GTM hiring from career pages (Greenhouse, Lever, Ashby)$0.05
GTM Tech Stack Signal EnrichmentDetects CRM, sequencer, and marketing automation from a public site$0.015
GTM Signals AggregatorCombines hiring and tech signals into one composite GTM score$0.09
Job Board Keyword Signal ScannerScans 5 ATS platforms for roles in any category$0.05
Domain to LinkedIn URL ResolverResolves a domain or name to its LinkedIn URL with firmographics$0.006
ICP Fit ScorerScores a company against your ideal customer profile$0.05
Domain Deliverability CheckerAudits email deliverability: SPF, DKIM, DMARC, MX, health score$0.005
Company Firmographic EnricherEnriches a domain into employee band, industry, HQ, revenue$0.004
Company Social Presence MapperMaps a domain to social URLs and follower counts$0.015
Company Identity ResolverResolves name, domain, or LinkedIn into one canonical identity$0.007
Company Change-Event FeedMonitors a domain and returns only what changed since last run$0.06
Funding & Press Signal ScannerScans news and press for funding, exec moves, launches, M&A$0.03

One-install option: the Mamba Labs GTM Suite MCP server exposes eleven of these actors as tools in a single package. Each actor also has its own MCP wrapper.

All actors: apify.com/mambalabs | Website: mambabuilt.com

Built by Mamba Labs.

You might also like

πŸ’°Company Funding Details Scraper

tech_gear/company-funding-details

βœ…Extract detailed company funding information.βœ…Access funding events, revenue, total funding, and investors.

108

1.0

Signal Radar

saima_nargis/my-actor

A lightweight, high-volume news intelligence engine that detects funding, acquisitions, product launches, partnerships, and hiring signals in real-time.

B2B Buying Signals: Hiring + Tech Stack Intent for Clay

mambalabs/b2b-buying-signals-hiring-tech-stack-intent-for-clay

Combines GTM hiring signals and tech stack detection into one flat Clay-ready row with composite score, recommended action, and plain-English summary. Runs two sub-actors in a single call. Built for Clay enrichment and outbound qualification. MCP-ready for Claude Desktop and AI agents.

Company News & Announcement Finder

coregent/company-news-announcement-finder

Find recent public company news, press releases, newsroom posts, blog announcements, product launches, funding updates, partnerships, and expansion signals. One flat, CSV-ready row per announcement. No login or cookies.

2

Apify β†’ Clay Pusher

robertsong13/apify---clay-pusher

Push results from the most recent Apify task run directly into Clay Webhook. Deduplicated and production-ready.

πŸ‘ User avatar

Grant Robertson

4

Company Funding Activities

pratikdani/company-funding-activities

Get complete funding information of a company

Funding Signal Finder from Public Web

coregent/funding-signal-finder-from-public-web

Find recent company funding signals from public web sources - news, press releases, RSS feeds, and official filings (optional SEC Form D). Returns one flat CSV row per unique signal with source URL, amount, stage, investors, confidence score, and reason tags. No paid database or login.

2