# Crunchbase Company Data API for Python

**Use case:** 

Call the Crunchbase Company Data API from Python: a company URL in, structured JSON out with funding, industries, HQ, and rank. One row per company.

## Input

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

## Output

```json
{
  "result_type": {
    "label": "Result Type",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "industries": {
    "label": "Industries",
    "format": "array"
  },
  "totalFunding": {
    "label": "Total Funding",
    "format": "string"
  },
  "employeeCount": {
    "label": "Employee Count",
    "format": "string"
  },
  "hqLocation": {
    "label": "HQ Location",
    "format": "string"
  },
  "cbRank": {
    "label": "Crunchbase Rank",
    "format": "integer"
  },
  "companyUrl": {
    "label": "Company URL",
    "format": "string"
  },
  "summary": {
    "label": "Summary",
    "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.