# Collect data analyst openings for hiring signal research

**Use case:** 

Collect public data analyst and analytics openings to study hiring demand, with structured fields for company, location, salary, and posting date.

## Input

```json
{
  "searchQuery": "data analyst",
  "location": "United States",
  "platforms": [
    "indeed",
    "linkedin",
    "glassdoor"
  ],
  "maxResults": 10,
  "jobType": "all",
  "isRemote": false,
  "hoursOld": 72,
  "deduplicate": true
}
```

## Output

```json
{
  "job_title": {
    "label": "Job Title",
    "format": "string"
  },
  "company_name": {
    "label": "Company Name",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "is_remote": {
    "label": "Is Remote",
    "format": "boolean"
  },
  "salary_min": {
    "label": "Salary Min",
    "format": "number"
  },
  "salary_max": {
    "label": "Salary Max",
    "format": "number"
  },
  "salary_range": {
    "label": "Salary Range (Display)",
    "format": "string"
  },
  "salary_currency": {
    "label": "Salary Currency",
    "format": "string"
  },
  "platform": {
    "label": "Source Platform",
    "format": "string"
  },
  "apply_url": {
    "label": "Apply URL",
    "format": "string"
  },
  "posted_date": {
    "label": "Posted Date",
    "format": "string"
  }
}
```

## About this Actor

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