# Job Listings Extractor from InfoJobs

**Use case:** 

Extract job postings from InfoJobs, including titles, salaries, and company details. Get structured data for recruitment and market analysis.

## Input

```json
{
  "searchUrl": "https://www.infojobs.net/jobsearch/search-results/list.xhtml",
  "results_wanted": 100,
  "max_pages": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "id": {
    "label": "Offer ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "description_text": {
    "label": "Description Text",
    "format": "string"
  },
  "company_name": {
    "label": "Company Name",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "contract_type": {
    "label": "Contract Type",
    "format": "string"
  },
  "teleworking": {
    "label": "Teleworking",
    "format": "string"
  },
  "salary_min": {
    "label": "Salary Min",
    "format": "integer"
  },
  "salary_max": {
    "label": "Salary Max",
    "format": "integer"
  },
  "salary_currency": {
    "label": "Salary Currency",
    "format": "string"
  },
  "published_at": {
    "label": "Published At",
    "format": "string"
  },
  "offer_url": {
    "label": "Offer URL",
    "format": "string"
  }
}
```

## About this Actor

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