# Y Combinator startup jobs — example run

**Use case:** 

Returns live openings from YC's Work at a Startup — title, company, YC batch, location and salary hints — as clean JSON.

## Input

```json
{
  "queries": [
    "engineer"
  ],
  "includeJobDetails": true,
  "titleExclude": [
    "intern",
    "sales"
  ],
  "jobTypes": [
    "Full-time",
    "Contract"
  ],
  "companyBatches": [
    "S23",
    "W24"
  ],
  "roleTypes": [
    "machine learning",
    "frontend"
  ],
  "remoteOnly": false,
  "maxItems": 5,
  "onlyNewSinceLastRun": false,
  "cacheTtlSeconds": 1800
}
```

## Output

```json
{
  "title": {
    "label": "Job title",
    "format": "string"
  },
  "company": {
    "label": "Company name",
    "format": "string"
  },
  "companyBatch": {
    "label": "YC batch",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "isRemote": {
    "label": "Remote",
    "format": "boolean"
  },
  "roleType": {
    "label": "Role type",
    "format": "string"
  },
  "jobType": {
    "label": "Employment type",
    "format": "string"
  },
  "salary": {
    "label": "Salary (raw)",
    "format": "string"
  },
  "equity": {
    "label": "Equity range",
    "format": "string"
  },
  "visaSponsorship": {
    "label": "Visa sponsorship",
    "format": "string"
  },
  "skills": {
    "label": "Skills",
    "format": "array"
  },
  "url": {
    "label": "Listing URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Y Combinator Jobs Scraper — Work at a Startup (1,000+ Jobs)](https://apify.com/nomad-agent/ycombinator-was-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/nomad-agent/ycombinator-was-scraper) to learn more, explore other use cases, and run it yourself.