Real-time Crunchbase company data — profiles, funding rounds, investors, and financials. All data is scraped directly from Crunchbase and returned as structured JSON.
See real data shapes from every endpoint — no signup required.
/crunchbase/company
curl -G "https://api.pullapi.com/crunchbase/company" \
-H "x-rapidapi-key: YOUR_API_KEY"
{
"success": true,
"data": {
"name": "OpenAI",
"slug": "openai",
"short_description": "OpenAI is an AI research and deployment company.",
"full_description": "OpenAI is an AI research and deployment company dedicated to ensuring that general-purpose artificial intelligence benefits all of humanity.",
"website": "https://openai.com",
"founded_date": "2015-12-11",
"status": "operating",
"company_type": "for_profit",
"num_employees": "1001-5000",
"industries": [ "Artificial Intelligence", "Machine Learning"
],
"headquarters": "San Francisco, California, United States",
"logo_url": "https://res.cloudinary.com/crunchbase-production/image/upload/openai-logo.png",
"total_funding": "$11.3B",
"last_funding_type": "Secondary Market",
"last_funding_date": "2024-02-16",
"ipo_status": "private",
"stock_symbol": null,
"founders": [
{
"name": "Sam Altman",
"title": "CEO",
"profile_url": "https://www.crunchbase.com/person/sam-altman"
},
{
"name": "Greg Brockman",
"title": "President",
"profile_url": "https://www.crunchbase.com/person/greg-brockman"
}
],
"funding_rounds": [
{
"round_name": "Secondary Market",
"money_raised": "$6.6B",
"announced_date": "2024-10-02",
"num_investors": 3,
"lead_investors": [ "Thrive Capital"
]
},
{
"round_name": "Series Unknown",
"money_raised": "$300M",
"announced_date": "2023-04-28",
"num_investors": 5,
"lead_investors": [ "Sequoia Capital"
]
}
],
"num_funding_rounds": 7,
"investors": [ "Microsoft", "Thrive Capital", "Sequoia Capital", "Andreessen Horowitz", "Tiger Global Management"
],
"social_links": {
"linkedin": "https://www.linkedin.com/company/openai",
"twitter": "https://twitter.com/OpenAI",
"facebook": null
}
},
"credits_used": 1,
"cache_hit": false,
"timestamp": "2026-03-15T12: 00: 00+00: 00"
}
2 endpoints across 2 categories.
/crunchbase/company
Get a full company profile from Crunchbase including description, founders, industries, headquarters, funding summary, investors, and social links. Accepts a company slug or a full Crunchbase URL.
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
slug |
string | Yes | Crunchbase company slug (e.g. 'openai', 'stripe') or a full Crunchbase URL like... | openai |
{
"success": true,
"data": {
"name": "OpenAI",
"slug": "openai",
"short_description": "OpenAI is an AI research and deployment company.",
"full_description": "OpenAI is an AI research and deployment company dedicated to ensuring that general-purpose artificial intelligence benefits all of humanity.",
"website": "https://openai.com",
"founded_date": "2015-12-11",
"status": "operating",
"company_type": "for_profit",
"num_employees": "1001-5000",
"industries": [ "Artificial Intelligence", "Machine Learning"
],
"headquarters": "San Francisco, California, United States",
"logo_url": "https://res.cloudinary.com/crunchbase-production/image/upload/openai-logo.png",
"total_funding": "$11.3B",
"last_funding_type": "Secondary Market",
"last_funding_date": "2024-02-16",
"ipo_status": "private",
"stock_symbol": null,
"founders": [
{
"name": "Sam Altman",
"title": "CEO",
"profile_url": "https://www.crunchbase.com/person/sam-altman"
},
{
"name": "Greg Brockman",
"title": "President",
"profile_url": "https://www.crunchbase.com/person/greg-brockman"
}
],
"funding_rounds": [
{
"round_name": "Secondary Market",
"money_raised": "$6.6B",
"announced_date": "2024-10-02",
"num_investors": 3,
"lead_investors": [ "Thrive Capital"
]
},
{
"round_name": "Series Unknown",
"money_raised": "$300M",
"announced_date": "2023-04-28",
"num_investors": 5,
"lead_investors": [ "Sequoia Capital"
]
}
],
"num_funding_rounds": 7,
"investors": [ "Microsoft", "Thrive Capital", "Sequoia Capital", "Andreessen Horowitz", "Tiger Global Management"
],
"social_links": {
"linkedin": "https://www.linkedin.com/company/openai",
"twitter": "https://twitter.com/OpenAI",
"facebook": null
}
},
"credits_used": 1,
"cache_hit": false,
"timestamp": "2026-03-15T12: 00: 00+00: 00"
}
/crunchbase/funding
Get detailed funding round data for a company, including round names, amounts raised, announced dates, lead investors, all investors, and pre/post-money valuations. Accepts a company slug or a full Crunchbase URL.
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
slug |
string | Yes | Crunchbase company slug (e.g. 'openai', 'stripe') or a full Crunchbase URL like... | stripe |
{
"success": true,
"data": {
"slug": "stripe",
"company_name": "Stripe",
"total_funding": "$8.7B",
"num_rounds": 10,
"rounds": [
{
"company_name": "Stripe",
"company_slug": "stripe",
"round_name": "Series I",
"money_raised": "$6.5B",
"announced_date": "2023-03-15",
"num_investors": 8,
"lead_investors": [ "Sequoia Capital", "Andreessen Horowitz"
],
"all_investors": [ "Sequoia Capital", "Andreessen Horowitz", "GIC", "Goldman Sachs", "Temasek", "Fidelity", "Baillie Gifford", "AIMA"
],
"pre_money_valuation": "$50B",
"post_money_valuation": "$55B"
},
{
"company_name": "Stripe",
"company_slug": "stripe",
"round_name": "Series H",
"money_raised": "$600M",
"announced_date": "2021-03-14",
"num_investors": 12,
"lead_investors": [ "Sequoia Capital"
],
"all_investors": [ "Sequoia Capital", "Andreessen Horowitz", "Fidelity", "National Treasury Management Agency"
],
"pre_money_valuation": "$95B",
"post_money_valuation": null
}
]
},
"credits_used": 1,
"cache_hit": false,
"timestamp": "2026-03-15T12: 00: 00+00: 00"
}
Get started in seconds with your preferred language.
curl -G "https://api.pullapi.com/crunchbase/company?slug=openai" \
-H "x-rapidapi-host: crunchbase-scraper-api.p.rapidapi.com" \
-H "x-rapidapi-key: YOUR_API_KEY"
HTTP-based API. No Selenium, no Puppeteer, no headless browsers to manage.
Automatic residential proxy rotation handles anti-bot detection for you.
Smart Redis caching means faster repeated queries and lower costs.
No monthly commitment. Free tier included. Pay only for what you use.
What developers build with the Crunchbase Scraper API.
More APIs in Business Data.
Lead Generation · Local SEO Audit
Lead Generation · Business Directory
Product Discovery · Launch Tracking
Talent Intelligence · Company Research
Salary Research · Job Market Analysis
Salary Benchmarking · Employer Branding
Start with the free tier. No credit card required.
Subscribe on RapidAPI →