# Enrich a shortlist of known HH vacancies

**Use case:** 

Turn a small list of public HH.RU vacancy URLs into normalized job records with comparable hiring fields and source links.

## Input

```json
{
  "searchQuery": "data engineer",
  "areaIds": [
    "1"
  ],
  "experience": "between1And3",
  "employmentType": "full",
  "scheduleType": "remote",
  "onlyWithSalary": false,
  "publishedWithinDays": 7,
  "sortOrder": "publication_time",
  "vacancyUrls": [
    "https://hh.ru/vacancy/123456",
    "https://hh.ru/vacancy/234567"
  ],
  "maxResults": 2,
  "includeJobDetails": true,
  "responseFormat": "concise"
}
```

## Output

```json
{
  "title": {
    "label": "Job title",
    "format": "string"
  },
  "companyName": {
    "label": "Company",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "schedule": {
    "label": "Schedule",
    "format": "string"
  },
  "experience": {
    "label": "Experience",
    "format": "string"
  },
  "salaryMin": {
    "label": "Salary minimum",
    "format": "number"
  },
  "salaryMax": {
    "label": "Salary maximum",
    "format": "number"
  },
  "salaryCurrency": {
    "label": "Salary currency",
    "format": "string"
  },
  "skills": {
    "label": "Skills",
    "format": "array"
  },
  "postedAt": {
    "label": "Posted at",
    "format": "string"
  },
  "jobUrl": {
    "label": "Job URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [HH.RU Jobs Scraper — Russian Hiring Intelligence](https://apify.com/khadinakbar/hh-ru-jobs-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/khadinakbar/hh-ru-jobs-scraper) to learn more, explore other use cases, and run it yourself.