Company Activity API
curl --request POST \
--url https://api.cufinder.io/v3/companies/activities \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"query": "<string>"
}
'import requests
url = "https://api.cufinder.io/v3/companies/activities"
payload = { "query": "<string>" }
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({query: '<string>'})
};
fetch('https://api.cufinder.io/v3/companies/activities', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.cufinder.io/v3/companies/activities",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'query' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.cufinder.io/v3/companies/activities"
payload := strings.NewReader("{\n \"query\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.cufinder.io/v3/companies/activities")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"query\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cufinder.io/v3/companies/activities")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"query\": \"<string>\"\n}"
response = http.request(request)
puts response.read_bodySignals APIs
Company Activity API
The Company Activity API returns a companyโs most recent social posts, including text, hashtags, media, and engagement counts. Pass a company name, domain, or LinkedIn URL and get back a structured feed you can mine for launches, hiring news, and campaigns.
POST
/
v3
/
companies
/
activities
Company Activity API
curl --request POST \
--url https://api.cufinder.io/v3/companies/activities \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"query": "<string>"
}
'import requests
url = "https://api.cufinder.io/v3/companies/activities"
payload = { "query": "<string>" }
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({query: '<string>'})
};
fetch('https://api.cufinder.io/v3/companies/activities', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.cufinder.io/v3/companies/activities",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'query' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.cufinder.io/v3/companies/activities"
payload := strings.NewReader("{\n \"query\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.cufinder.io/v3/companies/activities")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"query\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cufinder.io/v3/companies/activities")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"query\": \"<string>\"\n}"
response = http.request(request)
puts response.read_bodyCommon Use Cases
Company posts reveal what a business is talking about right now, launches, hiring, milestones, and campaigns.- Social Monitoring: Pulling a companyโs latest posts in a single call.
- Sales Timing: Spotting launches or announcements worth reacting to.
- Competitive Intelligence: Watching how competitors position and message.
- Content Research: Studying what resonates for a company or peer set.
Attributes
string
required
Company name, company domain, or company LinkedIn URL.
integer
Page number for paginated results.
Response
{
"success": true,
"data": {
"activities": [
{
"activity_id": "7462132400869888002",
"url": "https://www.linkedin.com/posts/cufinder_anthropic-alphabet-ai-activity-7462132400869888002-bCRi",
"text": "๐ $9B โ $2T: The Crossover Coming for Alphabet That's not a typo. Anthropic is projected to grow 222ร by 2030 โ and cross Alphabet's revenue by mid-2028. Joseph Jacks (OSS Capital) dropped the forecast. We animated it. ๐ โโโโโโโโโโโโโโโโโโโโโโโโโโโโ ๐ THE PROJECTED PATH ๐ค Anthropic ARR 2025 โ $9B (actual) 2026 โ $100B 2027 โ $340B 2028 โ $850B 2029 โ $1.4T 2030 โ $2T ๐ Alphabet GAAP Revenue 2025 โ $403B (actual) โ 2030 โ $815B Locked at ~15% YoY in a mature ads-and-cloud business. โโโโโโโโโโโโโโโโโโโโโโโโโโโโ โก THE CROSSOVER: MID-2028 @ ~$575B Joseph calls it \"a continuation of the curve already in evidence.\" Anthropic's ARR jumped 3.3ร in a single 4-month window ($9B โ $30B, Dec 2025 โ Apr 2026). Why this isn't a bull case: ๐น Enterprise customers (>$1M/yr) doubled 500 โ 1,000 in <2 months post-Series G ๐น Claude Code is the wedge dragging the whole platform into Fortune 2000 deployments ๐น Compute supply finally unblocked (3.5GW Google + Broadcom, SpaceX partnership) ๐น TAM isn't software ($800B). It's labor ($50T+). โโโโโโโโโโโโโโโโโโโโโโโโโโโโ ๐ SEE THE NEXT $1T COMPANY FIRST The next Anthropic isn't hiding. It's already in CUFinder. The CUFinder Company Revenue Filter slices 500M+ B2B records by exact revenue band: ๐น $1M โ $10M โ early movers ๐น $10M โ $100M โ scale-ups about to break out ๐น $100M โ $1B โ pre-IPO, pre-acquisition gold ๐น $1B+ โ enterprise giants Combine with industry, country, employee count and growth rate. Build a list of every $50โ200M AI company in Europe โ in 30 seconds. ๐ cufinder.io Forecast: Joseph Jacks OSS Capital. #Anthropic #Alphabet #AI #ClaudeCode #B2B #CUFinder #EnterpriseAI #StartupGrowth #LeadGeneration #JosephJacks",
"posted_at": "2026-05-18T13:30:04.063Z",
"is_video": true,
"hashtags": [
"#AI",
"#Alphabet",
"#Anthropic",
"#B2B",
"#CUFinder",
"#ClaudeCode",
"#EnterpriseAI",
"#JosephJacks",
"#LeadGeneration",
"#StartupGrowth"
],
"images": [
"https://media.licdn.com/dms/image/v2/D4D05AQHVN8EECW2Qow/videocover-high/B4DZ46pEhUGQBI-/0/1779100306969?e=2147483647&v=beta&t=7OeqGlKAUPD9jdYme0lvTDXAcMJv6xV2s7Cln7IjzQ0"
],
"videos": [
"https://dms.licdn.com/playlist/vid/v2/D4D05AQHVN8EECW2Qow/mp4-640p-30fp-crf28/B4DZ46pEhUGQBg-/0/1779100309437?e=2147483647&v=beta&t=wmKMKSO-tGEwSnLXajhlIoZW7quey8wPXc6W17oYAE0",
"https://www.linkedin.com/embed/feed/update/urn:li:activity:7462132400869888002?compact=true"
],
"reactions_count": 3,
"comments_count": 59,
"reposts_count": null,
"author": {
"name": null,
"type": null,
"url": null
}
},
{
"activity_id": "7459958072573083649",
"url": "https://www.linkedin.com/posts/cufinder_from-65m-to-40-million-a-decade-of-linkedin-activity-7459958072573083649-uifT",
"text": "๐ From 6.5M to 40 MILLION: A Decade of LinkedIn Power Shifts What does it actually take to dominate LinkedIn? We tracked the Top 20 most-followed people on LinkedIn โ every single year from 2016 to 2026. The story is wilder than you'd think. ๐ โโโโโโโโโโโโโโโโโโโโโโโโโโโโ ๐ THE GIANTS WHO HELD THE THRONE In 2016, Richard Branson ๐ฌ๐ง ruled with 6.5M followers. Today? He's #2 with 18.6M. The new king is Bill Gates ๐บ๐ธ โ who climbed from 2.5M โ 40.3M. That's a 16ร explosion. ๐คฏ Behind them stand the steady titans: ๐น Satya Nadella โ 12.0M ๐น Jeff Weiner โ 10.4M ๐น Arianna Huffington โ 9.6M Proof that consistent presence beats viral moments. Every. Single. Time. โโโโโโโโโโโโโโโโโโโโโโโโโโโโ ๐ก THE EARLY THOUGHT LEADERS (2016โ2018) The names that BUILT the LinkedIn we know today: โฆ Jack Welch โฆ Deepak Chopra MD (official) โฆ Mark Cuban โฆ โฆ Gretchen Rubin โฆ David Edelman โฆ Craig Newmark โฆ โฆ Lou Adler โฆ Robert Herjavec ๐จ๐ฆ โฆ Jeff Weiner Haden โฆ โฆ Daniel Burrus โฆ Bernard Marr ๐ฌ๐ง โฆ Barbara Corcoran โฆ โฆ Travis Bradberry โฆ Eric Ries โฆ Daniel Goleman โฆ Some are STILL in the top 20. Others got eclipsed by the next wave. โโโโโโโโโโโโโโโโโโโโโโโโโโโโ ๐ THE 2020 SURGE The pandemic flipped LinkedIn into a thought-leadership powerhouse. Suddenly, these voices broke through: โธ Tony Robbins โธ Justin Trudeau ๐จ๐ฆ โธ Melinda French Gates โธ Ian Bremmer โธ Narendra Modi ๐ฎ๐ณ โธ Adam Grant โธ Simon Sinek โธ Guy Kawasaki โธ James Caan CBE Caan ๐ฌ๐ง Authors. CEOs. Heads of state. LinkedIn stopped being a rรฉsumรฉ site โ and became a media platform. โโโโโโโโโโโโโโโโโโโโโโโโโโโโ ๐ THE NEW WAVE (2022โ2026) The latest climbers prove LinkedIn rewards depth over decades: ๐ Dr. Brigette Hyacinth Hyacinth ๐น๐น ๐ Anthony J James ๐ฆ๐บ ๐ Brenรฉ Brown ๐ Kevin O'Leary ๐จ๐ฆ ๐ Gary Vaynerchuk ๐ Derek Shen ๐จ๐ณ ๐ Lin Zhengang ๐ญ๐ฐ ๐ Barack Obama ๐บ๐ธ (yes, the LinkedIn debut hits hard) The biggest individual jump? ๐ Adam Grant: 200K โ 5.4M in 10 years. The recipe wasn't follower hacks. It was original ideas + relentless consistency. โโโโโโโโโโโโโโโโโโโโโโโโโโโโ ๐ SO HOW DO YOU FIND THE NEXT BREAKOUT VOICE? That's exactly why we built the โจ Influencer Filter โจ โ
Filter by follower count (1K โ 40M+) โ
Country, industry, role, seniority โ
Spot decision-makers AND rising voices โ
Your shortcut to the right people, at the right scale Whether you're prospecting, hiring, or building partnerships โ find them in seconds, not days. โโโโโโโโโโโโโโโโโโโโโโโโโโโโ #LinkedInInfluencers #ThoughtLeadership #B2BMarketing #LeadGeneration #CUFinder #InfluencerMarketing #SocialSelling #LinkedInTips #DataDriven #SalesProspecting #PersonalBranding #ContentMarketing #LinkedInGrowth #MarketingTrends #BusinessLeadership",
"posted_at": "2026-05-12T13:30:03.796Z",
"is_video": true,
"hashtags": [
"#B2BMarketing",
"#BusinessLeadership",
"#CUFinder",
"#ContentMarketing",
"#DataDriven",
"#InfluencerMarketing",
"#LeadGeneration",
"#LinkedInGrowth",
"#LinkedInInfluencers",
"#LinkedInTips",
"#MarketingTrends",
"#PersonalBranding",
"#SalesProspecting",
"#SocialSelling",
"#ThoughtLeadership"
],
"images": [
"https://media.licdn.com/dms/image/v2/D4D05AQFCCUuK-m23Lw/feedshare-thumbnail_720_1280/B4DZ4bN1gaKYA4-/0/1778573074134?e=2147483647&v=beta&t=qeWYQYqZURZHrwVwHCX78q9d3L7CBKU5vLvWJmdJX5g"
],
"videos": [
"https://dms.licdn.com/playlist/vid/v2/D4D05AQFCCUuK-m23Lw/mp4-720p-30fp-crf28/B4DZ4bN1gaKYB8-/0/1778573079681?e=2147483647&v=beta&t=nopjF4mMf7ME3kJw3E9urObuEmpn5MkrbHeI6e97H4o",
"https://www.linkedin.com/embed/feed/update/urn:li:activity:7459958072573083649?compact=true"
],
"reactions_count": 4,
"comments_count": 2,
"reposts_count": null,
"author": {
"name": null,
"type": null,
"url": null
}
},
{
"activity_id": "7344999453751173122",
"url": "https://www.linkedin.com/posts/cufinder_how-to-target-the-right-decision-maker-in-activity-7344999453751173122--B0C",
"text": "CUFinder helps businesses connect with real decision-makers โ fast. Our platform offers powerful tools for B2B lead generation, data enrichment, and contact search so you can find emails, phone numbers, LinkedIn profiles, and company domains in seconds. Whether you need to enrich an existing lead list or generate new prospects, CUFinder helps you target by job title, industry, company size, and location, with clean, verified data that fuels smarter outreach and faster growth. No more guessing. Just targeting. Start now at https://cufinder.io #B2BLeadGeneration #DataEnrichment #EmailFinder #LinkedInFinder #SalesTools #LeadGeneration #GrowthHacking #CUFinder #B2BSales #OutreachTools",
"posted_at": "2025-06-29T08:05:33.236Z",
"is_video": true,
"hashtags": [
"#B2BLeadGeneration",
"#B2BSales",
"#CUFinder",
"#DataEnrichment",
"#EmailFinder",
"#GrowthHacking",
"#LeadGeneration",
"#LinkedInFinder",
"#OutreachTools",
"#SalesTools"
],
"images": [
"https://media.licdn.com/dms/image/v2/D4E05AQHxa599JZ5Rzw/feedshare-thumbnail_720_1280/B4EZe6sEOlG4A0-/0/1751183814303?e=2147483647&v=beta&t=Fj5G_NO5ANQYnmCB2_3BIvuae474e5EoTPLykljKbrM"
],
"videos": [
"https://dms.licdn.com/playlist/vid/v2/D4E05AQHxa599JZ5Rzw/mp4-720p-30fp-crf28/B4EZe6sEOlG4Bw-/0/1751184328112?e=2147483647&v=beta&t=ovBOwxh55cJj2btdEuMUcq4zFNfzAryrqyE152AFQNY",
"https://www.linkedin.com/embed/feed/update/urn:li:activity:7344999453751173122?compact=true"
],
"reactions_count": 3,
"comments_count": null,
"reposts_count": null,
"author": {
"name": null,
"type": null,
"url": null
}
}
]
},
"meta": {
"confidence": 94,
"query": {
"query": "linkedin.com/company/cufinder",
"page": 1
},
"credits": {
"charged": 2,
"remaining": 9862
},
"pagination": {
"page": 1,
"has_more": false
}
}
}
Related APIs
Company Signals
Companies that just triggered a signal.
Company Snapshot
Get a quick company overview.
Company Enrichment
Enrich a company with full firmographics.
People Signals
People at companies that triggered a signal.

