# Scrape recent Ireland job listings

**Use case:** 

Pull recent job listings from IrishJobs.ie posted within the last 7 days. Filter by recency, get structured output. Pay per result.

## Input

```json
{
  "searchQuery": "nurse",
  "searchQueries": [
    "python developer",
    "data engineer",
    "devops"
  ],
  "location": "Dublin",
  "category": "34",
  "daysOld": 7,
  "maxResults": 5,
  "fetchDetails": false,
  "compact": false,
  "skipReposts": false,
  "startUrls": []
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "company": {
    "label": "Company",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "remote": {
    "label": "Remote",
    "format": "boolean"
  },
  "salaryMin": {
    "label": "Salary Min",
    "format": "number"
  },
  "salaryMax": {
    "label": "Salary Max",
    "format": "number"
  },
  "contractType": {
    "label": "Contract Type",
    "format": "text"
  },
  "publishDate": {
    "label": "Published",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [IrishJobs.ie Scraper — Ireland Job Listings](https://apify.com/unfenced-group/irishjobs-ie-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/unfenced-group/irishjobs-ie-scraper) to learn more, explore other use cases, and run it yourself.