# Extract OpenAI Crunchbase Funding Data

**Use case:** 

Extract OpenAI's public Crunchbase company profile with industry, headquarters, funding-round, and investor-summary fields for structured analysis.

## Input

```json
{
  "queries": [],
  "startUrls": [
    {
      "url": "https://www.crunchbase.com/organization/openai"
    }
  ],
  "maxItems": 1,
  "requireFunding": true,
  "maxSessionRetries": 4,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "name": {
    "label": "Company",
    "format": "string"
  },
  "crunchbaseUrl": {
    "label": "Crunchbase",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "industries": {
    "label": "Industries",
    "format": "array"
  },
  "lastFundingType": {
    "label": "Last funding",
    "format": "string"
  },
  "numberOfFundingRounds": {
    "label": "Rounds",
    "format": "number"
  },
  "investorCount": {
    "label": "Investors",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Crunchbase Company & Funding Search Scraper](https://apify.com/automation-lab/crunchbase-company-funding-search-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/crunchbase-company-funding-search-scraper) to learn more, explore other use cases, and run it yourself.