# Research a Public PitchBook Company Profile

**Use case:** 

Extract identity, status, industry, location, ownership, and exposed public company facts for a known PitchBook company profile.

## Input

```json
{
  "profileUrls": [
    "https://pitchbook.com/profiles/company/11787-22"
  ],
  "maxItems": 1,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "maxRetries": 2,
  "requestTimeoutSecs": 60
}
```

## Output

```json
{
  "name": {
    "label": "Company name",
    "format": "string"
  },
  "companyId": {
    "label": "Company ID",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "primaryIndustry": {
    "label": "Primary industry",
    "format": "string"
  },
  "yearFounded": {
    "label": "Year founded",
    "format": "integer"
  },
  "employees": {
    "label": "Employees",
    "format": "integer"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State / region",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "profileUrl": {
    "label": "PitchBook profile",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [PitchBook Company Profiles Scraper](https://apify.com/automation-lab/pitchbook-companies-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/pitchbook-companies-scraper) to learn more, explore other use cases, and run it yourself.