# Scrape recent New Zealand job listings

**Use case:** 

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

## Input

```json
{
  "searchQuery": "sales",
  "location": "Auckland",
  "workType": "Any",
  "daysOld": 7,
  "sortMode": "KeywordRelevance",
  "fetchDetails": false,
  "startUrls": [
    {
      "url": "https://www.seek.co.nz/job/12345678"
    }
  ],
  "requestDelayMs": 500,
  "respectRobotsTxt": true,
  "maxItems": 5
}
```

## Output

```json
{
  "id": {
    "label": "Job ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "company": {
    "label": "Company",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "workType": {
    "label": "Work Type",
    "format": "text"
  },
  "roleId": {
    "label": "Role",
    "format": "text"
  },
  "salaryLabel": {
    "label": "Salary",
    "format": "text"
  },
  "publishDate": {
    "label": "Published",
    "format": "date"
  },
  "logoUrl": {
    "label": "Logo",
    "format": "image"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "isRepost": {
    "label": "Repost",
    "format": "boolean"
  },
  "changeStatus": {
    "label": "Change",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [SEEK New Zealand Scraper — Jobs from seek.co.nz](https://apify.com/unfenced-group/seek-co-nz-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/unfenced-group/seek-co-nz-scraper) to learn more, explore other use cases, and run it yourself.