Crunchbase API
Company profiles, funding rounds and investor networks.
Why teams scrape Crunchbase
Crunchbase holds some of the most commercially useful public data on the web, and almost none of it is available through a stable official feed at the volume real products need. Rate limits, partner-only access and shifting page structures mean teams either give up on the source or maintain a fragile scraper that breaks every few weeks.
Funding events are the clearest buying signal in B2B, and licensed access is priced for enterprises rather than for teams that need a few thousand records a month.
Irmu removes the infrastructure question entirely. One authenticated request handles proxy selection, browser rendering, anti-bot challenges and retries, and AI Extract turns the resulting page into validated JSON against a schema you define. You get company, description, founded, headcount, total_funding, last_round, investors, industries without writing or maintaining a single selector, and the same endpoint, quota and observability model you already use for every other source.
What it powers
Funding-triggered outbound
Reach out the week a round is announced.
Market mapping
Chart a category by funding stage and geography.
Investor research
Track portfolio activity and co-investment patterns.
Account scoring
Weight accounts by capital raised and stage.
Fields available
Everything below comes back typed and validated against your schema.
company
Company name
description
Company summary
founded
Founding year
headcount
Employee band
total_funding
Total raised
last_round
Most recent round type and date
investors
Named investors
industries
Industry tags
One call, no selectors
curl -X POST https://app.irmu.com/api/extract \
-H "Authorization: Bearer irmu_sk_live_..." \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.crunchbase.com/organization/example-corp",
"schema": {
"company": "string",
"description": "string",
"founded": "string",
"headcount": "string",
"total_funding": "string",
"last_round": "string"
}
}'Validated JSON
{
"data": {
"company": "Example Corp",
"total_funding": "$42M",
"last_round": "Series B",
"founded": 2019
},
"credits_used": 22,
"status": 200
}Copy, paste, ship
import requests
res = requests.post(
"https://app.irmu.com/api/extract",
headers={"Authorization": "Bearer irmu_sk_live_..."},
json={
"url": "https://www.crunchbase.com/organization/example-corp",
"schema": {
"company": "string",
"description": "string",
"founded": "string",
"headcount": "string"
},
},
)
data = res.json()["data"]
print(data)Simple credits
Per organization page
22 credits
Failed requests are retried automatically and never billed.
See full pricing →Crunchbase API questions
Start extracting Crunchbase data today
1,000 free credits every month. No card, no sales call.