COMPANYAI API MCP READY

Crunchbase Company API

Collect Crunchbase company data as clean, structured JSON. Send one or many organization URLs and get funding, investors, industries, HQ location, employee count, rank, and status. Reliable, pay per company, MCP-ready for Claude and AI agents.

MEDIAN LAGon demand
PARAMETERS1
TOTAL USERS55
MONTHLY ACTIVE35
TOTAL RUNS2,233
SUCCESS (30D)97.4%
RATINGno ratings yet
LAST MODIFIED2026-09-17
PUBLISHED2026-07

Input parameters

PARAMETERTYPEREQDEFAULTDESCRIPTION
companyUrls string[] yes One or more Crunchbase organization URLs, e.g. https://www.crunchbase.com/organization/openai.

Worked examples

Basic — the required input, with the schema's own example values
{
  "companyUrls": [
    "https://www.crunchbase.com/organization/openai"
  ]
}

Code

curl

curl -X POST "https://api.apify.com/v2/acts/johnvc~crunchbase-company-api/run-sync-get-dataset-items" \
  -H "Authorization: Bearer $APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"companyUrls": ["https://www.crunchbase.com/organization/openai"]}'

Python

from apify_client import ApifyClient

client = ApifyClient("APIFY_TOKEN")
run = client.actor("johnvc/crunchbase-company-api").call(
    run_input={'companyUrls': ['https://www.crunchbase.com/organization/openai']}
)
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)