# Gulftalent.com Scraper (`unfenced-group/gulftalent-com-scraper`) Actor

Extract Gulf & Middle East job listings from GulfTalent.com. Filter by keyword, location, country and category. Structured output with salary, description and apply URL. $0.69/1,000 results.

- **URL**: https://apify.com/unfenced-group/gulftalent-com-scraper.md
- **Developed by:** [Unfenced Group](https://apify.com/unfenced-group) (community)
- **Categories:** Jobs
- **Stats:** 4 total users, 1 monthly users, 92.9% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.69 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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

![GulfTalent Scraper](https://i.imgur.com/2TEHRaK.png)

Extract job listings from [GulfTalent.com](https://www.gulftalent.com) — the leading job board for the Gulf region and wider Middle East. Filter by keyword, location, country and job category. Results include title, company, full description, salary range, job type and posting date.

---

### Why this scraper?

#### 🌍 Gulf & Middle East coverage
Covers jobs across UAE, Saudi Arabia, Kuwait, Qatar, Bahrain, Oman, Egypt, Jordan and more — all in a single run.

#### 🔍 Flexible search filters
Combine keyword search with location, country and category filters to target exactly the jobs you need.

#### 📄 Full job descriptions
Returns complete descriptions in HTML, plain text and Markdown — ready for downstream processing, AI pipelines or storage.

#### 💰 Structured salary data
Salary minimum, maximum, currency and period are returned as individual numeric fields when available.

#### 🔁 Repost detection
Cross-run deduplication flags jobs already seen in previous runs. Use `skipReposts` to exclude them from results entirely — ideal for scheduled monitoring.

#### 📎 Direct URL support
Paste individual job URLs via `startUrls` to scrape specific listings on demand.

---

### Input parameters

| Parameter | Type | Description | Default |
|-----------|------|-------------|---------|
| `keywords` | String | Job title, skill or keyword (e.g. `project manager`) | — |
| `location` | String | City or region (e.g. `Dubai`, `Riyadh`) | — |
| `country` | String | Country name or code (e.g. `UAE`, `Saudi Arabia`) | — |
| `category` | String | Job category (e.g. `Engineering`, `Finance`) | — |
| `maxItems` | Integer | Maximum number of results to return | `100` |
| `daysOld` | Integer | Only return jobs posted within this many days. `0` = no filter | `0` |
| `skipReposts` | Boolean | Skip jobs already seen in a previous run | `false` |
| `startUrls` | Array | Individual job URLs to scrape directly | — |

---

### Output schema

Each result contains the following fields:

```json
{
  "url": "https://www.gulftalent.com/uae/jobs/senior-software-engineer-571102",
  "title": "Senior Software Engineer",
  "company": "Acme Technologies LLC",
  "companyWebsite": "https://acmetechnologies.com",
  "location": "Dubai",
  "country": "UAE",
  "category": "Information Technology",
  "jobType": "Full-time",
  "publishDate": "2026-04-18T09:00:00.000Z",
  "applyUrl": "https://acmetechnologies.com/careers/apply/571102",
  "descriptionHtml": "<p>We are looking for a Senior Software Engineer...</p>",
  "descriptionText": "We are looking for a Senior Software Engineer...",
  "descriptionMarkdown": "We are looking for a **Senior Software Engineer**...",
  "salaryMin": 15000,
  "salaryMax": 22000,
  "salaryCurrency": "AED",
  "salaryPeriod": "MONTHLY",
  "isRepost": false,
  "originalPublishDate": null,
  "originalUrl": null,
  "scrapedAt": "2026-04-23T10:30:00.000Z",
  "sourceUrl": "https://www.gulftalent.com"
}
````

***

### Examples

**Example 1 — Engineering jobs in Dubai**

```json
{
  "keywords": "engineer",
  "location": "Dubai",
  "maxItems": 50
}
```

**Example 2 — Finance jobs across Saudi Arabia**

```json
{
  "keywords": "finance",
  "country": "Saudi Arabia",
  "category": "Finance",
  "maxItems": 200
}
```

**Example 3 — Scheduled daily monitor (last 24h, no reposts)**

```json
{
  "keywords": "data analyst",
  "location": "Abu Dhabi",
  "daysOld": 1,
  "skipReposts": true,
  "maxItems": 500
}
```

**Example 4 — Scrape specific job URLs**

```json
{
  "startUrls": [
    { "url": "https://www.gulftalent.com/uae/jobs/project-manager-571200" },
    { "url": "https://www.gulftalent.com/qatar/jobs/hr-specialist-571350" }
  ]
}
```

***

### 💰 Pricing

**$0.69 per 1,000 results** — you only pay for successfully retrieved listings.
Failed retries and filtered reposts are never charged.

| Results | Cost |
|---------|------|
| 100 | ~$0.07 |
| 1,000 | ~$0.69 |
| 10,000 | ~$6.90 |
| 100,000 | ~$69.00 |

> Flat-rate alternatives typically charge $29–$49/month regardless of usage.
> At 10,000 results/month, this scraper costs significantly less with no commitment.

Use the **Max results** cap to control your spend exactly.

***

### Performance

| Run size | Approx. duration |
|----------|-----------------|
| 100 results | 3–6 min |
| 1,000 results | 20–35 min |
| 10,000 results | 3–5 hours |

Duration depends on proxy response times and the number of detail pages fetched.

***

### Known limitations

- **Apply URL:** Many applications redirect through an external modal or ATS — `applyUrl` may be `null` for those listings.
- **Salary:** Not published by all employers — will be `null` when unavailable.
- **Platform coverage:** Returns publicly listed jobs only. Premium/hidden listings are not accessible.

***

### Technical details

- **Source:** gulftalent.com — job board for Gulf & Middle East markets
- **Memory:** 512 MB
- **Repost storage:** KeyValueStore `gulftalent-scraper-job-dedup`, 90-day TTL
- **Retry:** Automatic retry on network errors with exponential backoff, 3 attempts per request

***

### Additional services

Need a custom actor, additional filters, scheduled runs, or integration support?
Send an email to <info@unfencedgroup.nl> — we build on request.

***

*Built by [unfenced-group](https://apify.com/unfenced-group) · Issues? Open a ticket or send a message.*

# Actor input Schema

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

Job title, skill or keyword to search for (e.g. 'software engineer', 'project manager')

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

City or region to filter by (e.g. 'Dubai', 'Riyadh')

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

Country name or code to filter by (e.g. 'UAE', 'Saudi Arabia', 'Kuwait')

## `category` (type: `string`):

Job category to filter by (e.g. 'Engineering', 'Finance', 'IT')

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

Maximum number of job listings to return

## `daysOld` (type: `integer`):

Only return jobs posted within this many days. Set to 0 to disable.

## `skipReposts` (type: `boolean`):

When enabled, jobs that were already returned in a previous run are skipped (useful for scheduled runs).

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

List of GulfTalent job URLs to scrape directly. Overrides keyword/location search.

## `fetchDetails` (type: `boolean`):

When enabled, fetches full description, salary and apply URL from each job's detail page. Increases run time and proxy usage significantly. Most use cases do not need this.

## Actor input object example

```json
{
  "keywords": "",
  "location": "",
  "country": "",
  "category": "",
  "maxItems": 5,
  "daysOld": 0,
  "skipReposts": false,
  "startUrls": []
}
```

# Actor output Schema

## `OUTPUT` (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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("unfenced-group/gulftalent-com-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 = {}

# Run the Actor and wait for it to finish
run = client.actor("unfenced-group/gulftalent-com-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 '{}' |
apify call unfenced-group/gulftalent-com-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Gulftalent.com Scraper",
        "description": "Extract Gulf & Middle East job listings from GulfTalent.com. Filter by keyword, location, country and category. Structured output with salary, description and apply URL. $0.69/1,000 results.",
        "version": "1.0",
        "x-build-id": "pKjutQM7aYurtzvMZ"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/unfenced-group~gulftalent-com-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-unfenced-group-gulftalent-com-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/unfenced-group~gulftalent-com-scraper/runs": {
            "post": {
                "operationId": "runs-sync-unfenced-group-gulftalent-com-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/unfenced-group~gulftalent-com-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-unfenced-group-gulftalent-com-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "keywords": {
                        "title": "Keywords",
                        "type": "string",
                        "description": "Job title, skill or keyword to search for (e.g. 'software engineer', 'project manager')",
                        "default": ""
                    },
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "City or region to filter by (e.g. 'Dubai', 'Riyadh')",
                        "default": ""
                    },
                    "country": {
                        "title": "Country",
                        "type": "string",
                        "description": "Country name or code to filter by (e.g. 'UAE', 'Saudi Arabia', 'Kuwait')",
                        "default": ""
                    },
                    "category": {
                        "title": "Job Category",
                        "type": "string",
                        "description": "Job category to filter by (e.g. 'Engineering', 'Finance', 'IT')",
                        "default": ""
                    },
                    "maxItems": {
                        "title": "Max results",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum number of job listings to return",
                        "default": 5
                    },
                    "daysOld": {
                        "title": "Max age (days)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only return jobs posted within this many days. Set to 0 to disable.",
                        "default": 0
                    },
                    "skipReposts": {
                        "title": "Skip previously seen jobs",
                        "type": "boolean",
                        "description": "When enabled, jobs that were already returned in a previous run are skipped (useful for scheduled runs).",
                        "default": false
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "List of GulfTalent job URLs to scrape directly. Overrides keyword/location search.",
                        "default": [],
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "fetchDetails": {
                        "title": "Fetch full job details",
                        "type": "boolean",
                        "description": "When enabled, fetches full description, salary and apply URL from each job's detail page. Increases run time and proxy usage significantly. Most use cases do not need this."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
