# Sales Job Listings Data Extractor

**Use case:** 

Collect up to 200 Sales job postings from Talent.com. Get structured data including job titles, companies, locations, and salary details.

## Input

```json
{
  "startUrl": "https://www.talent.com/jobs?k=developer&l=remote",
  "searchQuery": "Sales",
  "location": "United States",
  "maxItems": 200,
  "maxPages": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "title": {
    "label": "Job Title",
    "format": "text"
  },
  "company": {
    "label": "Company",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "salary": {
    "label": "Salary",
    "format": "text"
  },
  "jobType": {
    "label": "Job Type",
    "format": "text"
  },
  "postedDate": {
    "label": "Posted",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Talent Job Scraper](https://apify.com/shahidirfan/talent-job-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/shahidirfan/talent-job-scraper) to learn more, explore other use cases, and run it yourself.