# Extract Deal & Financing Data from PitchBook

**Use case:** 

Pull deal data from a PitchBook URL: latest deal type, date, and amount, plus financing rounds, financing status, and the acquirer. One row per company.

## Input

```json
{
  "companyUrls": [
    "https://pitchbook.com/profiles/company/10874-98"
  ]
}
```

## Output

```json
{
  "name": {
    "label": "Company Name",
    "format": "string"
  },
  "financingStatus": {
    "label": "Financing Status",
    "format": "string"
  },
  "latestDealType": {
    "label": "Latest Deal Type",
    "format": "string"
  },
  "latestDealDate": {
    "label": "Latest Deal Date",
    "format": "string"
  },
  "latestDealAmount": {
    "label": "Latest Deal Amount",
    "format": "string"
  },
  "financingRounds": {
    "label": "Financing Rounds",
    "format": "integer"
  },
  "investmentsCount": {
    "label": "Investments",
    "format": "integer"
  },
  "acquirer": {
    "label": "Acquirer",
    "format": "string"
  },
  "companyUrl": {
    "label": "Company URL",
    "format": "string"
  }
}
```

## About this Actor

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