# hh.ru Job Scraper for Vacancy Search Data

**Use case:** 

Scrape hh.ru vacancy search results by query, area, grade, salary, and page depth. Export titles, companies, locations, salaries, and job URLs.

## Input

```json
{
  "query": "QA Engineer",
  "maxPages": 1,
  "areaName": "Москва",
  "grades": [
    "senior"
  ],
  "salaryFrom": 200000
}
```

## Output

```json
{
  "title": {
    "label": "Vacancy title",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "workFormat": {
    "label": "Work format",
    "format": "string"
  },
  "salary": {
    "label": "Salary",
    "format": "string"
  },
  "experience": {
    "label": "Experience",
    "format": "string"
  },
  "postedAt": {
    "label": "Posted at",
    "format": "string"
  },
  "url": {
    "label": "Vacancy URL",
    "format": "string"
  },
  "resultPage": {
    "label": "Result page",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [HH.ru Vacancy List Scraper](https://apify.com/quartz_upscale/hh-vacancy-list-actor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/quartz_upscale/hh-vacancy-list-actor) to learn more, explore other use cases, and run it yourself.