Crunchbase Scraper avatar

Crunchbase Scraper

Pricing

from $8.00 / 1,000 company scrapeds

Go to Apify Store
Crunchbase Scraper

Crunchbase Scraper

Scrape Crunchbase company profiles and funding data by company name or organization link, without a login. Returns the company profile (description, website, socials, location, categories, employee and revenue range, funding totals) plus its funding rounds (date, type, amount, investors). Walks.

Pricing

from $8.00 / 1,000 company scrapeds

Rating

0.0

(0)

Developer

Goutam Soni

Goutam Soni

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

8 hours ago

Last modified

Share

Extract public Crunchbase company data without a login. Give it company names or organization links and it returns a clean company profile plus the company's funding rounds. Pagination is walked automatically up to the limit you set.

What it does

  • Company profile by name or organization link. Description, website, social links, location, categories, founded date, operating status, company type, employee range, revenue range, and headline funding figures.
  • Funding rounds for each company. Date, round type, amount raised, valuations, lead investors, and all investors, walked across pages up to your limit.

No account, no password, no API key. Give it a company name (Acme Co), an organization URL, or a bare organization slug, and it returns structured rows.

Input

FieldTypeDescription
companiesarrayCompany names or Crunchbase organization links to look up. Accepts a name, an organization URL, or a bare slug.
maxFundingRoundsintegerCap on funding rounds returned per company. Default 100.
includeFundingRoundsbooleanInclude the funding-rounds list per company. Turn off for profile-only output.
concurrencyintegerCompanies processed in parallel. Default 5.
proxyConfigobjectProxy used for requests. Residential is recommended.

Example input

{
"companies": [
"Acme Co",
"https://www.crunchbase.com/organization/example-co",
"example-startup"
],
"maxFundingRounds": 200,
"includeFundingRounds": true
}

Output

One row per company, with funding rounds nested inside:

{
"type": "company",
"name": "Acme Co",
"url": "https://www.crunchbase.com/organization/example-co",
"shortDescription": "An example company.",
"websiteUrl": "https://example.com",
"linkedinUrl": "https://www.linkedin.com/company/example-co",
"country": "United States",
"city": "San Francisco",
"categories": ["Software", "Analytics"],
"foundedOn": "2015-01-01",
"operatingStatus": "active",
"employeeRange": "101-250",
"fundingTotalUsd": 45000000,
"fundingStage": "series_b",
"lastFundingType": "series_b",
"lastFundingAt": "2024-03-01",
"numFundingRounds": 4,
"numInvestors": 12,
"founders": ["Jane Doe"],
"fundingRounds": [
{
"name": "Series B - Acme Co",
"announcedOn": "2024-03-01",
"investmentType": "series_b",
"moneyRaisedUsd": 30000000,
"moneyRaisedCurrency": "USD",
"numInvestors": 5,
"leadInvestors": ["Acme Ventures"],
"investors": ["Acme Ventures", "Example Capital"]
}
],
"scrapedAt": "2026-06-18T00:00:00.000Z"
}

Notes

  • Funding figures and counts reflect the values at scrape time.
  • maxFundingRounds walks as many pages as needed to reach your target.
  • A company that cannot be found returns a row with ok: false and a not_found reason, so a single bad input never fails the run.
  • Routing requests through a residential proxy is recommended for reliable access.

To improve our actors we collect anonymized usage telemetry (run stats and input patterns). No personal account data is collected.