Complete company intelligence,
six API endpoints
Resolve a name to a domain, then pull company details, employee count, blog & social updates, funding history, and the logo — all from one API.
Website Lookup
1 credit- Name match
- Country bias
- Hint disambig
Company Details
2 creditsWebsite Lookup
Company Details
2 credits
Employee Count
Company Logo
Company Updates
Company Funding
Have a name, need a domain? Start here.
Resolve a company name to its canonical website URL. Bias the search by country, or pass a hint to disambiguate similarly-named companies.
/api/v1/company/website
curl -G \ "/api/v1/company/website" \ --data-urlencode "company_name=Apex" \ --data-urlencode "country_code=us" \ --data-urlencode "hint=cybersecurity firm" \ -H "Authorization: Bearer YOUR_API_KEY"
{
"website": "https://www.apexsecurity.com"
}
Pipe the resolved domain into any other endpoint — details, employees, updates, funding, logo — for full intel from just a name.
Company Details
/api/v1/company/details
curl -G \ "/api/v1/company/details" \ --data-urlencode "website=https://stripe.com" \ -H "Authorization: Bearer YOUR_API_KEY"
{
"name": "Stripe",
"tagline": "Financial infrastructure to grow your revenue",
"company_type": "PRIVATELY_HELD",
"founded_year": 2010,
"employee_count": 8500,
"industry": 40201020,
"specialties": [
"Payments processing",
"Billing and subscription management",
"Financial services platform",
"International payments"
],
"executives": [
{
"name": "Patrick Collison",
"title": "Co-founder and CEO"
}
],
"addresses": [
{
"city": "South San Francisco",
"state": "CA",
"country": "United States"
}
],
"twitter_url": "https://x.com/stripe",
"facebook_url": "https://facebook.com/StripeHQ",
"public_listing": null
}
Stripe
Financial infrastructure to grow your revenue
Test it live
Pick a company and endpoint, then hit Execute
Track employee growth over time
Use the dedicated Employee Count endpoint to get fresh headcount data via real-time web search.
/api/v1/company/employee-count
curl -G \ "/api/v1/company/employee-count" \ --data-urlencode "website=https://stripe.com" \ -H "Authorization: Bearer YOUR_API_KEY"
{
"employee_count": 8000
}
Returns a fresh count via real-time web search. Poll monthly to build growth trends.
Stripe — Employee Growth
Grab any company's logo, free.
Pass a domain, get a clean 128×128 PNG back. Perfect for CRM thumbnails, dashboards, and enrichment pipelines — charged at zero credits, no quotas to plan around.
/api/v1/company/logo
curl -G \ "/api/v1/company/logo" \ --data-urlencode "website=https://www.stripe.com" \ -H "Authorization: Bearer YOUR_API_KEY" \ --output logo.png
Returns a raw PNG binary — just pipe it to a file with --output. Zero credits charged on success; 404 returned (uncharged) when no logo can be found.
Track blogs and social activity
Aggregate blog posts and X/Twitter updates into a single timeline for any company.
/api/v1/company/updates
curl -G \ "/api/v1/company/updates" \ --data-urlencode "website=https://stripe.com" \ -H "Authorization: Bearer YOUR_API_KEY"
{
"blogs": ["https://stripe.com/blog/feed.rss"],
"x_profile": "https://x.com/stripe",
"updates": [
{
"url": "https://stripe.com/blog/annual-letter",
"title": "Stripe's annual letter",
"description": "A look back at what we built...",
"timestamp": "2025-03-01T12:00:00+00:00",
"source": "blog"
},
{
"url": "https://x.com/stripe/status/...",
"title": "We just launched a new feature",
"timestamp": "2025-02-28T18:30:00+00:00",
"source": "x"
}
]
}
Discovers blog RSS feeds and X profiles automatically. Returns posts sorted by date.
Stripe — Recent Updates
A look back at what we built in 2024 and where we're heading next.
How we scaled our payments platform to serve businesses in 46 countries.
Funding rounds and investors
Get the complete funding history, round details, and investor breakdown for any company.
/api/v1/company/funding
curl -G \ "/api/v1/company/funding" \ --data-urlencode "website=https://stripe.com" \ -H "Authorization: Bearer YOUR_API_KEY"
{
"total_funds_raised_usd": 9810000000,
"funding_rounds": [
{
"round_type": "SERIES_I",
"date": "2024-04-01",
"amount_usd": 694200000,
"investors": [
{
"name": "Sequoia Capital",
"website": "sequoiacap.com",
"type": "company"
}
]
}
]
}
Returns funding rounds with investor details. Includes investor websites for enrichment.
Stripe — Funding History
Use Cases
Turn any domain into actionable business intelligence
Lead Scoring
Stripe
92
Shopify
88
Figma
65
Score leads by company size, funding stage, and growth trajectory.
Employee Growth Trends
Stripe
8,000
Shopify
10,000
Salesforce
73,000
Poll the Employee Count endpoint monthly to build long-term headcount trends across target accounts.
CRM Enrichment
Stripe
Enriched
Auto-fill CRM records with company intel, executives, and social links.
Ready to enrich your data pipeline?
Start with the free logo endpoint, or 1 credit for a name-to-domain lookup. From 2 credits for full company intel. No card required.
Start building now