# Y Combinator Companies Bulk Data Scraper

**Use case:** 

Enrich a large list of Y Combinator company slugs in one high-concurrency run. For data teams building a startup research dataset from full YC profiles.

## Input

```json
{
  "startUrls": [
    "https://www.ycombinator.com/companies/openai",
    "https://www.ycombinator.com/companies/scale-ai",
    "https://www.ycombinator.com/companies/vanta",
    "https://www.ycombinator.com/companies/retool",
    "https://www.ycombinator.com/companies/webflow",
    "https://www.ycombinator.com/companies/segment"
  ],
  "maxConcurrency": 25,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "small_logo_url": {
    "label": "Logo",
    "format": "image"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "one_liner": {
    "label": "One-liner",
    "format": "text"
  },
  "batch": {
    "label": "Batch",
    "format": "text"
  },
  "ycdc_status": {
    "label": "Status",
    "format": "text"
  },
  "team_size": {
    "label": "Team size",
    "format": "number"
  },
  "year_founded": {
    "label": "Founded",
    "format": "number"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "yc_url": {
    "label": "YC page",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Y Combinator Company Detail Scraper](https://apify.com/datacach/yc-companies-detail-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/datacach/yc-companies-detail-scraper) to learn more, explore other use cases, and run it yourself.