# JobStreet Job Scraper (`jobscrawler/jobstreet-job-scraper`) Actor

Extract detailed job listings from JobStreet across 8 Asia-Pacific countries. Get job titles, companies, salaries, work arrangements, and full job descriptions.

- **URL**: https://apify.com/jobscrawler/jobstreet-job-scraper.md
- **Developed by:** [Jobs Scraper](https://apify.com/jobscrawler) (community)
- **Categories:** Jobs, Developer tools, Automation
- **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

## JobStreet Job Scraper

Extract detailed job listings from JobStreet across 8 Asia-Pacific countries. Get job titles, companies, salaries, work arrangements, and full job descriptions.

### Features

- **Keyword search** — find content by keyword, search term, or topic
- **Direct URL mode** — scrape specific pages by providing target URLs
- **Location filtering** — narrow results to specific cities, regions, or countries
- **Configurable result limit** — set exactly how many items to collect per run
- **Salary data** — captures compensation details when available
- **Cloud-ready** — runs on Apify with scheduling, proxy rotation, and webhook support

### Use Cases

- Job market research and salary benchmarking across industries
- Automated recruitment pipeline and candidate sourcing
- Tracking new job postings for target companies or roles
- Competitive analysis of hiring trends by location and role

### Input

| Field | Type | Default | Required | Description |
|-------|------|---------|----------|-------------|
| `mode` | string | `search` |  | How to scrape: search by keyword or provide direct job URLs. Options: `search`, `jobUrl` |
| `keywords` | string | `—` |  | Job title or keywords to search for (e.g. 'software engineer', 'data analyst') |
| `location` | string | `—` |  | City or region to search in (e.g. Singapore, Kuala Lumpur, Jakarta) |
| `country` | string | `sg` |  | JobStreet country site to scrape. Options: `sg`, `my`, `ph`, `id`, `th`, `hk`, `nz`, `au` |
| `startUrls` | array | `—` |  | Direct JobStreet job listing URLs to scrape. Used when mode is 'jobUrl'. |
| `jobType` | string | `|  | Employment type filter. Options:`, `full-time`, `part-time`, `contract`, `casual`, `internship` |
| `workArrangement` | string | `|  | Remote / on-site / hybrid filter. Options:`, `remote`, `hybrid`, `onsite` |
| `salaryMin` | integer | `—` |  | Minimum advertised salary (in local currency) |
| `maxJobs` | integer | `50` |  | Maximum number of job listings to scrape |
| `proxyConfiguration` | object | Apify Residential |  | Proxy settings. Residential proxy is strongly recommended |

### Output

Each scraped item includes:

| Field | Description |
|-------|-------------|
| `jobId` | Job id |
| `title` | Full product or listing title |
| `company` | Hiring company or organisation name |
| `companyUrl` | URL to the company's profile page |
| `location` | Job or listing location (city or remote flag) |
| `country` | Country name or ISO country code |
| `jobType` | Work arrangement (Remote, Hybrid, On-site) |
| `workArrangement` | Work arrangement |
| `careerLevel` | Career level |
| `yearsOfExperience` | Years of experience |
| `educationLevel` | Education level |
| `salaryRange` | Formatted salary band (e.g. $80k-$120k/yr) |
| `salaryMin` | Salary min |
| `salaryMax` | Salary max |
| `salaryCurrency` | Salary currency |
| `salaryPeriod` | Salary period |
| `postedDate` | Date the item was posted (YYYY-MM-DD) |
| `expiryDate` | Expiry date |
| `description` | Full description text |
| `requirements` | Requirements |

#### Sample Output

```json
{
  "jobId": "jobId_value",
  "title": "Example Product or Listing Title",
  "company": "Acme Corp",
  "companyUrl": "companyUrl_value",
  "location": "New York, NY",
  "country": "country_value",
  "jobType": "jobType_value",
  "workArrangement": "workArrangement_value"
}
```

### Notes

- **Proxy**: Residential proxy is highly recommended — set `proxyConfiguration: { useApifyProxy: true, apifyProxyGroups: ["RESIDENTIAL"] }`
- **Rate limits**: Keep `maxItems` reasonable per run to avoid IP bans or rate throttling
- **Scheduling**: Use Apify Scheduler to run this actor on a recurring basis for a consistently fresh dataset

# Actor input Schema

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

How to scrape: search by keyword or provide direct job URLs

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

Job title or keywords to search for (e.g. 'software engineer', 'data analyst')

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

City or region to search in (e.g. Singapore, Kuala Lumpur, Jakarta)

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

JobStreet country site to scrape

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

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

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

Employment type filter

## `workArrangement` (type: `string`):

Remote / on-site / hybrid filter

## `salaryMin` (type: `integer`):

Minimum advertised salary (in local currency)

## `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 engineer",
  "location": "Singapore",
  "country": "sg",
  "jobType": "",
  "workArrangement": "",
  "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 engineer",
    "location": "Singapore"
};

// Run the Actor and wait for it to finish
const run = await client.actor("jobscrawler/jobstreet-job-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 engineer",
    "location": "Singapore",
}

# Run the Actor and wait for it to finish
run = client.actor("jobscrawler/jobstreet-job-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 engineer",
  "location": "Singapore"
}' |
apify call jobscrawler/jobstreet-job-scraper --silent --output-dataset

```

## MCP server setup

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