# Extract jobs from an Eluta Edmonton search page

**Use case:** 

Process a real Eluta Edmonton search URL and export normalized listing records with job, employer, location, timing, and source fields.

## Input

```json
{
  "searchTerms": [
    "software engineer"
  ],
  "location": "Toronto, ON",
  "startUrls": [
    {
      "url": "https://www.eluta.ca/search?q=project+manager&l=Edmonton+AB"
    }
  ],
  "maxItems": 8,
  "maxPages": 3
}
```

## Output

```json
{
  "title": {
    "label": "Job title",
    "format": "string"
  },
  "employer": {
    "label": "Employer",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "salary": {
    "label": "Salary",
    "format": "string"
  },
  "postedAge": {
    "label": "Posted age",
    "format": "string"
  },
  "postedAt": {
    "label": "Posted at",
    "format": "string"
  },
  "jobUrl": {
    "label": "Eluta job",
    "format": "string"
  },
  "sourceJobUrl": {
    "label": "Source job",
    "format": "string"
  },
  "searchTerm": {
    "label": "Search term",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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