# Extract a Workopolis nursing search feed

**Use case:** 

Turn a real Workopolis nurse search URL into normalized Canadian job records ready for export or integration.

## Input

```json
{
  "keyword": "software developer",
  "location": "Toronto, ON",
  "postedWithin": "7d",
  "startUrls": [
    {
      "url": "https://www.workopolis.com/search?q=nurse&l=Toronto%2C+ON"
    }
  ],
  "maxItems": 15,
  "maxPages": 2,
  "includeDetails": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "title": {
    "label": "Job title",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "salary": {
    "label": "Salary",
    "format": "string"
  },
  "employmentType": {
    "label": "Employment type",
    "format": "string"
  },
  "workSetting": {
    "label": "Work setting",
    "format": "string"
  },
  "datePosted": {
    "label": "Posted",
    "format": "string"
  },
  "url": {
    "label": "Job URL",
    "format": "string"
  },
  "snippet": {
    "label": "Snippet",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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