# Jora Jobs Scraper (`jobscrawler/jora-jobs-scraper`) Actor

Extract job listings from Jora.com with job titles, companies, locations, salaries, and full job descriptions. Supports multiple countries.

- **URL**: https://apify.com/jobscrawler/jora-jobs-scraper.md
- **Developed by:** [Jobs Scraper](https://apify.com/jobscrawler) (community)
- **Categories:** Jobs, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.49 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Jora Jobs Scraper

High-performance, reliable Apify actor to scrape complete job listings from Jora.com across 10+ countries (Australia, New Zealand, Canada, Singapore, India, South Africa, UK, US, Mexico, Philippines).

### Features

- **Keyword & Location Search** — Search for jobs by title, keyword, city, or region.
- **Direct Job URL Scraping** — Extract full details from specific Jora job URLs.
- **Multi-Country Coverage** — Supports 10 regional domains (`au`, `nz`, `ca`, `sg`, `in`, `za`, `uk`, `us`, `mx`, `ph`).
- **Rich Data Extraction** — Extracts job titles, companies, locations, salaries, employment types, posting dates, company logos, full descriptions, and clean URLs.
- **Strict Limit Enforcement** — Stops execution cleanly as soon as `maxJobs` is reached.
- **Fast & Lightweight** — Powered by Crawlee `CheerioCrawler` for rapid HTTP extraction with minimal resource overhead.
- **Cloud & Proxy Ready** — Built-in support for Apify residential and datacenter proxies.

### Input Parameters

| Field | Type | Default | Description |
|---|---|---|---|
| `mode` | `string` | `"search"` | Scraping mode: `"search"` or `"jobUrl"` |
| `keywords` | `string` | `"software developer"` | Job title or search keywords |
| `location` | `string` | `"Sydney"` | Target city or location |
| `country` | `string` | `"au"` | Country code (`au`, `nz`, `ca`, `sg`, `in`, `za`, `uk`, `us`, `mx`, `ph`) |
| `jobType` | `string` | `""` | Employment type filter (`fulltime`, `parttime`, `contract`, `casual`, `internship`) |
| `datePosted` | `string` | `""` | Filter by recency in days (`1`, `3`, `7`, `14`, `30`) |
| `maxJobs` | `integer` | `50` | Maximum number of job listings to extract |
| `startUrls` | `array` | `[]` | List of direct Jora job URLs (when `mode: "jobUrl"`) |
| `proxyConfiguration` | `object` | Residential | Proxy settings |

### Output Schema

Each record pushed to the dataset contains structured JSON fields:

| Field | Type | Description |
|---|---|---|
| `jobId` | `string` | Unique identifier for the job listing |
| `title` | `string` | Job listing title |
| `company` | `string` | Hiring company or organization name |
| `location` | `string` | Job location / city / region |
| `country` | `string` | Country code |
| `salary` | `string` | Salary range or compensation details |
| `jobType` | `string` | Employment type (e.g. Full time, Contract, Casual) |
| `jobUrl` | `string` | Direct link to the job listing on Jora |
| `scrapedAt` | `string` | ISO 8601 timestamp of extraction |
| `description` | `string` | Full job description / bullet summary |
| `companyLogoUrl` | `string` | Company logo image URL |
| `postedDate` | `string` | Posting date string or timestamp |

#### Sample Output

```json
{
  "jobId": "42beea648ef8784bdf81dbff89dbf19b",
  "title": "Staff Software Engineer",
  "company": "Commonwealth Bank",
  "location": "Sydney CBD NSW",
  "country": "au",
  "salary": "$140,000 - $165,000 a year",
  "jobType": "Full time",
  "jobUrl": "https://au.jora.com/job/Staff-Software-Engineer-42beea648ef8784bdf81dbff89dbf19b",
  "scrapedAt": "2026-08-24T10:14:10.123Z",
  "description": "Design and develop solutions for Cyber Security Services Engineering\nHands-on experience in Java/Python/Typescript, API, Kafka, MQ\nExperience in full SDLC, CI/CD, RDBMS, and source control systems",
  "companyLogoUrl": null,
  "postedDate": "Posted 6h ago"
}
```

### Best Practices & Tips

- **Residential Proxies**: When running at scale or across multiple country domains, enable Apify Residential Proxies to ensure uninterrupted throughput.
- **Execution Limits**: Set `maxJobs` according to your pipeline requirements to optimize runtime.

# Actor input Schema

## `mode` (type: `string`):

Scraping mode: search by keyword or provide direct URLs

## `keywords` (type: `string`):

Job title or keywords to search for

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

City or region (e.g. Sydney, Melbourne, Brisbane)

## `country` (type: `string`):

Jora country subdomain to use

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

Direct Jora job URLs to scrape. Used when mode is 'jobUrl'.

## `jobType` (type: `string`):

Employment type filter

## `datePosted` (type: `string`):

Filter by how recently jobs were posted

## `maxJobs` (type: `integer`):

Maximum number of job listings to scrape

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

Proxy configuration for the crawler (RESIDENTIAL recommended)

## Actor input object example

```json
{
  "mode": "search",
  "keywords": "software developer",
  "location": "Sydney",
  "country": "au",
  "jobType": "",
  "datePosted": "",
  "maxJobs": 50,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# Actor output Schema

## `dataset` (type: `string`):

Dataset containing all scraped job listings

# 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 = {
    "keywords": "software developer",
    "location": "Sydney"
};

// Run the Actor and wait for it to finish
const run = await client.actor("jobscrawler/jora-jobs-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 = {
    "keywords": "software developer",
    "location": "Sydney",
}

# Run the Actor and wait for it to finish
run = client.actor("jobscrawler/jora-jobs-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 '{
  "keywords": "software developer",
  "location": "Sydney"
}' |
apify call jobscrawler/jora-jobs-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,jobscrawler/jora-jobs-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/Ro7hnbypdoXS0WiiH/builds/k7BPkAkvNQIIeNCAl/openapi.json
