# Export Startup Company Data to CSV or Sheets

**Use case:** 

Export a batch of startup profiles to CSV or Google Sheets: company name, country, founded year, focus areas, analyst score, and website.

## Input

```json
{
  "companyUrls": [
    "https://www.ventureradar.com/organisation/Entrepreneur%20First/eae1b629-708d-4c87-ae00-1976d9d70e41",
    "https://www.ventureradar.com/organisation/Chipax/cbf17c41-e4bd-4f3c-b60a-8bc915f8aa75",
    "https://www.ventureradar.com/organisation/VanHack/95aac179-88fd-4ca5-8acb-0d64a0e9c34f"
  ]
}
```

## 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.