# Extract Funding & Investor Data from Crunchbase

**Use case:** 

Pull funding data from a Crunchbase URL: total funding, number of rounds, investor count, investor names, and IPO status. One row per company.

## Input

```json
{
  "companyUrls": [
    "https://www.crunchbase.com/organization/apple"
  ]
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "string"
  },
  "totalFunding": {
    "label": "Total Funding",
    "format": "string"
  },
  "numFundingRounds": {
    "label": "Funding Rounds",
    "format": "integer"
  },
  "numInvestors": {
    "label": "Investor Count",
    "format": "integer"
  },
  "investors": {
    "label": "Investors",
    "format": "array"
  },
  "numAcquisitions": {
    "label": "Acquisitions",
    "format": "integer"
  },
  "ipoStatus": {
    "label": "IPO Status",
    "format": "string"
  },
  "growthScore": {
    "label": "Growth Score",
    "format": "integer"
  },
  "companyUrl": {
    "label": "Company URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Crunchbase Company API | Funding, Investors & Firmographics](https://apify.com/johnvc/crunchbase-company-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/crunchbase-company-api) to learn more, explore other use cases, and run it yourself.