# Extract Specific Investor Profiles by URL for Due Diligence

**Use case:** 

Retrieve detailed profiles of known investors directly using their PitchBook URLs for in-depth due diligence and background checks. This ensures accuracy and co

## Input

```json
{
  "profileUrls": [
    "https://pitchbook.com/profiles/investor/88888-88",
    "https://pitchbook.com/profiles/investor/99999-99",
    "https://pitchbook.com/profiles/investor/12345-67"
  ],
  "searchQuery": "venture capital",
  "maxItems": 3,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "primaryInvestorType": {
    "label": "Type",
    "format": "text"
  },
  "investorStatus": {
    "label": "Status",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "totalInvestments": {
    "label": "Investments",
    "format": "number"
  },
  "activePortfolio": {
    "label": "Portfolio",
    "format": "number"
  },
  "profileUrl": {
    "label": "PitchBook URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

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