# Track competitor hiring by company and location

**Use case:** 

Monitor competitor job postings to understand expansion plans, organizational structure, and hiring velocity.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.indeed.com/jobs?q=data+analyst&l=New+York%2C+NY&fromage=7"
    }
  ],
  "query": "software engineer",
  "location": "San Francisco, CA",
  "country": "www.indeed.com",
  "maxItems": 500,
  "startPage": 1,
  "pageSize": 15,
  "maxSearchSegments": 20,
  "postedWithinDays": 7,
  "radiusKm": 25,
  "jobType": "any",
  "remoteWorkType": "any",
  "sort": "date",
  "experienceLevel": "any",
  "dedupeJobs": true,
  "scrapeDetailPages": true,
  "maxConcurrency": 20,
  "requestDelayMillis": 0,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestRetries": 2,
  "retryDelayMillis": 1000,
  "requestTimeoutSecs": 30
}
```

## Output

```json
{
  "title": {
    "label": "Job title"
  },
  "company_name": {
    "label": "Company"
  },
  "company_active_jobs_count": {
    "label": "Company active jobs"
  },
  "company_industry": {
    "label": "Industry"
  },
  "location": {
    "label": "Location"
  },
  "salary": {
    "label": "Salary"
  },
  "relative_time": {
    "label": "Posted"
  },
  "detail_status": {
    "label": "Detail status"
  },
  "job_type": {
    "label": "Type"
  },
  "indeed_apply": {
    "label": "Indeed Apply",
    "format": "boolean"
  },
  "is_sponsored": {
    "label": "Sponsored",
    "format": "boolean"
  },
  "job_url": {
    "label": "Job URL",
    "format": "link"
  }
}
```

## About this Actor

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