# Bulk Collect Startup Profiles from a URL List

**Use case:** 

Paste up to 1000 startup profile URLs and get one clean row each: company name, country, founded year, focus areas, analyst score, and website.

## Input

```json
{
  "companyUrls": [
    "https://www.ventureradar.com/organisation/Theneo/b40ae154-6867-456f-a215-d98fdae0048c",
    "https://www.ventureradar.com/organisation/Entrepreneur%20First/eae1b629-708d-4c87-ae00-1976d9d70e41",
    "https://www.ventureradar.com/organisation/Chipax/cbf17c41-e4bd-4f3c-b60a-8bc915f8aa75"
  ]
}
```

## Output

```json
{
  "companyName": {
    "label": "Company name",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "founded": {
    "label": "Founded",
    "format": "integer"
  },
  "areasOfFocus": {
    "label": "Areas of focus",
    "format": "array"
  },
  "analystScore": {
    "label": "Analyst score",
    "format": "integer"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "string"
  }
}
```

## About this Actor

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