# Bulk Collect PitchBook Companies from a URL List

**Use case:** 

Paste up to 1000 PitchBook company URLs and get one clean row each: name, industry, employees, founding year, and ownership status.

## Input

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

## Output

```json
{
  "result_type": {
    "label": "Result Type",
    "format": "string"
  },
  "name": {
    "label": "Company Name",
    "format": "string"
  },
  "primaryIndustry": {
    "label": "Primary Industry",
    "format": "string"
  },
  "employees": {
    "label": "Employees",
    "format": "integer"
  },
  "foundedYear": {
    "label": "Founded Year",
    "format": "integer"
  },
  "ownershipStatus": {
    "label": "Ownership Status",
    "format": "string"
  },
  "companyUrl": {
    "label": "Company URL",
    "format": "string"
  },
  "summary": {
    "label": "Summary",
    "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.