# 🇨🇦 Eluta.ca Canada Jobs Scraper (`hipersoft/eluta-scraper`) Actor

Scrape job listings from Eluta.ca, Canada's job search engine. Search by keyword and location and export one clean row per job: title, company, location, salary, posting URL, snippet and posted date as JSON, CSV or Excel.

- **URL**: https://apify.com/hipersoft/eluta-scraper.md
- **Developed by:** [hiper soft](https://apify.com/hipersoft) (community)
- **Categories:** Jobs
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.0015 / job scraped

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Eluta.ca Canada Jobs Scraper — Titles, Companies, Salaries & Bulk Export

Scrape **job listings from Eluta.ca**, Canada's job search engine, with clean, structured data: **job title, company, location, salary, posting URL, snippet and posted date**. Search by keyword and city, walk every result page automatically, and bulk-export live Canadian job postings into JSON, CSV, Excel or XML. Fast and reliable.

### What does Eluta.ca Canada Jobs Scraper do?

Eluta.ca Canada Jobs Scraper collects Canadian job listings and returns them as structured rows. Search one keyword or many, narrow to a city or province, and bulk-export the results — then use the jobs, companies, salaries and links for a job board, alerts, recruiting research or hiring-market analysis.

### What data can you scrape from Eluta.ca?

- 🇨🇦 **Bulk Canadian jobs** — export live listings with automatic pagination
- 🧑‍💼 **Job title** — the posting title
- 🏢 **Company** — the hiring employer
- 📍 **Location** — city and province
- 💰 **Salary** — pay range when the posting shows one
- 📝 **Snippet** — a short description excerpt
- 🕒 **Posted date** — how recently the job appeared
- 🔗 **Apply link** — the posting URL to the employer's job page

### Use cases

- **Job boards & aggregators** — feed fresh, structured Canadian listings into your own site
- **Job alerts** — monitor new roles by keyword and city
- **Salary research** — track pay ranges across roles and regions in Canada
- **Hiring-market analysis** — measure demand by role, company or location over time
- **Recruiting & lead generation** — find companies actively hiring for specific skills

### How to scrape Eluta.ca jobs

1. Add Eluta.ca Canada Jobs Scraper to your Apify account.
2. Enter one or more `queries` (keywords) — for example `developer`, `registered nurse`, `accountant`.
3. Optionally set a `location` (e.g. `Toronto`, `Vancouver`, `Ontario`) to narrow every search.
4. Set `maxItems` to cap how many jobs to return.
5. Run the Actor and export the results as JSON, CSV, Excel or XML — or pull them via the API.

### Input

```json
{
  "queries": ["developer", "data analyst"],
  "location": "Toronto",
  "maxItems": 200
}
```

You can also paste Eluta.ca search URLs directly via `startUrls` instead of keywords.

| Field | Description |
|-------|-------------|
| `queries` | Job keywords to search — one search per keyword. |
| `location` | Optional Canadian city or region filter, applied to every keyword. |
| `startUrls` | Optional Eluta.ca search URLs to scrape instead of keywords. |
| `maxItems` | Maximum jobs to collect (0 = no limit). |
| `maxConcurrency` | How many requests to run in parallel. |
| `proxyConfiguration` | Optional proxy settings. |

### Output

Each job is one row. Example:

```json
{
  "title": "Senior Software Developer, Developer Experience (DevX)",
  "company": "Robinhood Markets, Inc.",
  "location": "Toronto, ON",
  "salary": "$166,000 - $195,000",
  "url": "https://www.eluta.ca/spl/senior-software-developer-...",
  "snippet": "developer infrastructure at Robinhood...",
  "postedDate": "1 day ago",
  "sourceQuery": "developer",
  "collectedAt": "2026-09-05T00:00:00.000Z"
}
```

Export the whole dataset as JSON, CSV, Excel or XML, or fetch it through the Apify API.

### FAQ

**Which country does this cover?** Eluta.ca is Canada's job search engine, so listings are Canadian job postings.

**Can I scrape multiple keywords at once?** Yes — add several keywords to `queries` and each is searched in turn.

**Can I filter by city?** Yes — set `location` to a Canadian city or province and it applies to every keyword.

**What formats can I export?** JSON, CSV, Excel and XML, or via the Apify API and integrations.

# Actor input Schema

## `queries` (type: `array`):

Job keywords to search for on Eluta.ca — one search per keyword (e.g. "developer", "registered nurse", "accountant"). Combine with a Location below to narrow results.

## `location` (type: `string`):

Optional Canadian city or region to filter jobs by (e.g. "Toronto", "Vancouver", "Ontario"). Leave empty to search all of Canada. Applies to every keyword above.

## `startUrls` (type: `array`):

Optional: paste Eluta.ca search result URLs straight from your browser instead of using keywords (e.g. https://www.eluta.ca/search?q=developer\&l=Toronto). The scraper walks every page automatically.

## `maxItems` (type: `integer`):

Maximum number of jobs to collect across all searches (0 = no limit; collect everything the searches return).

## `maxConcurrency` (type: `integer`):

How many requests to run in parallel. Leave at the default unless you have a reason to change it.

## `proxyConfiguration` (type: `object`):

Optional proxy settings. Leave off for most runs; enable a proxy only if you need it for reliable access.

## Actor input object example

```json
{
  "queries": [
    "developer"
  ],
  "location": "",
  "maxItems": 100,
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `results` (type: `string`):

The results as dataset items.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "queries": [
        "developer"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("hipersoft/eluta-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "queries": ["developer"] }

# Run the Actor and wait for it to finish
run = client.actor("hipersoft/eluta-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "queries": [
    "developer"
  ]
}' |
apify call hipersoft/eluta-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,hipersoft/eluta-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/BToec1PcR0QoP2pSy/builds/9SXDat4AAWu6prt5D/openapi.json
