# Wellfound Startup Jobs Scraper

**Use case:** 

Extract startup jobs from Wellfound with titles, companies, roles and links. Export structured listings to power job boards and recruiting pipelines.

## Input

```json
{
  "maxItems": 3,
  "searchUrls": [
    "https://wellfound.com/jobs",
    "https://wellfound.com/role/software-engineer",
    "https://wellfound.com/role/product-manager",
    "https://wellfound.com/role/data-scientist",
    "https://wellfound.com/role/designer",
    "https://wellfound.com/role/marketing"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "jobId": {
    "label": "Job Id",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "company": {
    "label": "Company",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "salary": {
    "label": "Salary",
    "format": "text"
  },
  "remote": {
    "label": "Remote",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Wellfound Jobs Scraper](https://apify.com/parseforge/wellfound-jobs-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/wellfound-jobs-scraper) to learn more, explore other use cases, and run it yourself.