# Bayt Jobs Search Scraper (`jobsapi/bayt-jobs-search-scraper`) Actor

Scrape job listings from Bayt.com, the Middle East's largest job platform. Extract job titles, companies, locations, career levels, and job types across the MENA region.

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

## Pricing

from $2.99 / 1,000 job details

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/platform/actors/running/actors-in-store#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

## Bayt Jobs Search Scraper

Extract job listings from Bayt.com - the Middle East's leading job platform. Collect job titles, companies, locations, and descriptions across Gulf and MENA markets.

### Features

- **Keyword search** — find jobs by keyword, search term, or role
- **Location filtering** — narrow results to specific cities, regions, or countries

### Use Cases

- **Middle East job market analysis** — track hiring activity across Gulf countries (UAE, Saudi Arabia, Qatar, Kuwait)
- **Gulf region recruitment sourcing** — build pipelines for roles in construction, finance, healthcare, and technology
- **Cross-border talent mapping** — understand talent movement patterns between Middle Eastern markets
- **Regional salary benchmarking** — compare compensation packages by role, industry, and location across the Gulf

### Sample Input

```json
{
  "keyword": "software engineer",
  "query": "software engineer dubai",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"]
  },
  "startUrl": "https://www.bayt.com/en/uae/jobs/",
  "results_wanted": 20
}
```

### Sample Output

```json
{
  "title": "Senior Software Engineer",
  "company": "Tech Solutions LLC",
  "location": "Dubai, UAE",
  "country": "United Arab Emirates",
  "categories": ["Engineering", "Information Technology"],
  "datePosted": "2026-06-20",
  "employmentType": "Full Time",
  "careerLevel": "Senior",
  "salary": "AED 25,000 - 35,000",
  "url": "https://www.bayt.com/en/uae/jobs/123456/",
  "scrapedAt": "2026-06-24T12:00:00.000Z"
}
```

### Input

| Field | Type | Default | Required | Description |
|-------|------|---------|----------|-------------|
| `keyword` | string | — |  | Job keyword to search for, e.g. 'software engineer', 'marketing manager'. |
| `query` | string | — |  | Full search query string to use for building the search URL. |
| `keywords` | string | — |  | Comma-separated list of keywords for job search. |
| `proxyConfiguration` | object | `{"useApifyProxy":true,"apifyProxyGroups":["RESIDENTIAL"]}` |  | Proxy settings. Use Apify Residential proxy for best results. |
| `startUrl` | string | `https://www.bayt.com/en/international/jobs/` |  | Start scraping from a specific Bayt.com search URL. |
| `results_wanted` | integer | `20` |  | The maximum number of jobs to collect. |
| `experienceLevel` | string | — |  | Filter by minimum experience level: Entry Level, Mid Level, Senior Level, Executive, Director. |
| `salaryMin` | integer | — |  | Minimum salary filter (in local currency). Only show jobs paying at least this amount. |
| `salaryMax` | integer | — |  | Maximum salary filter (in local currency). Only show jobs paying at most this amount. |
| `remoteFilter` | string | — |  | Filter by work location type: Remote, Hybrid, On-site. |
| `educationLevel` | string | — |  | Filter by minimum education level: High School, Associate Degree, Bachelor's, Master's, Doctorate. |

### Output

| Field | Description |
|-------|-------------|
| `position` | Position number |
| `title` | Job title |
| `company` | Company name |
| `companyLogo` | Company logo URL |
| `companyProfileUrl` | Company profile URL |
| `location` | Job location |
| `country` | Country |
| `categories` | Job categories |
| `aiSummary` | AI-generated summary |
| `skills` | Required skills |
| `datePosted` | Date the job was posted |
| `dateTimestamp` | Date timestamp |
| `applyUrl` | Apply URL |
| `scrapedAt` | ISO timestamp when the job was scraped |
| `jobId` | Unique job identifier |
| `postedAtRelative` | Relative posted date |
| `employmentType` | Employment type |
| `careerLevel` | Career level |
| `experience` | Experience required |
| `salary` | Salary information |
| `url` | URL |
| `listingPage` | Page number where the job was found |

### Notes

- **Proxy**: Residential proxy is highly recommended
- **Rate limits**: Keep `maxJobs` reasonable per run to avoid IP bans
- **Scheduling**: Use Apify Scheduler to run this actor on a recurring basis

# Actor input Schema

## `keyword` (type: `string`):

Job keyword to search for, e.g. 'software engineer', 'marketing manager'.

## `query` (type: `string`):

Full search query string to use for building the search URL.

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

Comma-separated list of keywords for job search.

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

Optionally, use Apify Proxy or custom HTTP proxy to avoid IP address-based blocking.

## `startUrl` (type: `string`):

Start scraping from a specific Bayt.com search URL (e.g., https://www.bayt.com/en/uae/jobs/). If not provided, defaults to international jobs.

## `results_wanted` (type: `integer`):

The maximum number of jobs to collect. If omitted, defaults to 20.

## `experienceLevel` (type: `string`):

Filter by minimum experience level required for the position.

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

Minimum salary filter (in local currency). Only show jobs paying at least this amount.

## `salaryMax` (type: `integer`):

Maximum salary filter (in local currency). Only show jobs paying at most this amount.

## `remoteFilter` (type: `string`):

Filter by work location type.

## `educationLevel` (type: `string`):

Filter by minimum education level required.

## Actor input object example

```json
{
  "keyword": "software engineer",
  "query": "software engineer dubai",
  "keywords": "software, engineer, developer",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "IN"
  },
  "startUrl": "https://www.bayt.com/en/uae/jobs/",
  "results_wanted": 20,
  "experienceLevel": "",
  "remoteFilter": "",
  "educationLevel": ""
}
```

# Actor output Schema

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

No description

# 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 = {
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "IN"
    },
    "startUrl": "https://www.bayt.com/en/international/jobs/",
    "results_wanted": 20
};

// Run the Actor and wait for it to finish
const run = await client.actor("jobsapi/bayt-jobs-search-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 = {
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "IN",
    },
    "startUrl": "https://www.bayt.com/en/international/jobs/",
    "results_wanted": 20,
}

# Run the Actor and wait for it to finish
run = client.actor("jobsapi/bayt-jobs-search-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "IN"
  },
  "startUrl": "https://www.bayt.com/en/international/jobs/",
  "results_wanted": 20
}' |
apify call jobsapi/bayt-jobs-search-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=jobsapi/bayt-jobs-search-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/dZAMRlj6he1NAsXAR/builds/bUdSfWkfhlqLPXQTT/openapi.json
