# Wuzzuf.net Scraper (`unfenced-group/wuzzuf-net-scraper`) Actor

Scrape job listings from Wuzzuf.net — Egypt's largest job board with 50,000+ active postings. Filter by keyword, city, job type, career level, and workplace arrangement.

- **URL**: https://apify.com/unfenced-group/wuzzuf-net-scraper.md
- **Developed by:** [Unfenced Group](https://apify.com/unfenced-group) (community)
- **Categories:** Jobs
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN 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/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

## Wuzzuf Scraper
![Wuzzuf Scraper](https://i.imgur.com/S83gBS2.png)

Scrape thousands of job listings from Wuzzuf.net — Egypt's largest job board with 50,000+ active postings — in a structured, ready-to-use format. Filter by keyword, city, job type, career level, and more. No API key required.

---

### Why this scraper?

#### 🗂️ Full structured output
Every listing includes title, company, location, job type, career level, workplace arrangement, experience requirements, keywords, salary (when disclosed), and a full job description with requirements — all in one result.

#### 🔍 Flexible search & filtering
Search by keyword, city, country, job type (full-time, part-time, freelance, internship), workplace arrangement (on-site, hybrid, remote), career level, and job category.

#### ⚡ Fast & lightweight
No browser automation required. Runs at 256 MB memory with results in seconds — cost-efficient at any scale.

#### 📅 Recency filter
Limit results to jobs posted in the last 24 hours, 7 days, or 30 days.

#### 🔁 Cross-run deduplication
The `skipReposts` option tracks previously seen listings across runs using a 90-day window, so you only receive new postings.

#### 🌍 Multi-country coverage
Wuzzuf posts jobs across Egypt, Saudi Arabia, UAE, UK, and other markets — accessible with a single country filter.

---

### Input parameters

| Parameter | Type | Default | Description |
|---|---|---|---|
| `keyword` | string | `""` | Job title, skill, or keyword to search for |
| `city` | string | `""` | Filter by city (e.g. `Cairo`, `Alexandria`) |
| `country` | string | `""` | Filter by country (e.g. `Egypt`, `Saudi Arabia`) |
| `jobType` | string | `""` | `full_time`, `part_time`, `freelance_project`, `internship`, `shift_based`, `volunteering` |
| `workplaceArrangement` | string | `""` | `on_site`, `hybrid`, `remote` |
| `careerLevel` | string | `""` | `Entry Level`, `Experienced`, `Manager`, `Senior Management`, `Student` |
| `category` | string | `""` | Job category (e.g. `IT/Software Development`, `Sales/Retail`) |
| `daysOld` | integer | `0` | Max listing age in days (0 = no restriction; 1 = last 24h; 7 = last week; 30 = last month) |
| `maxResults` | integer | `100` | Maximum number of results to return |
| `skipReposts` | boolean | `false` | Skip listings already seen in a previous run |
| `startUrls` | array | `[]` | Specific Wuzzuf search URLs to scrape (overrides other inputs) |

---

### Output schema

```json
{
    "id": "4089ceb7-a7ef-427f-a870-3f3267352f13",
    "url": "https://wuzzuf.net/jobs/p/ym9fqf90bkdr-oracle-database-developer-icis-cairo-egypt",
    "title": "Oracle Database Developer",
    "companyName": "ICIS",
    "companyWebsite": "https://www.icis-eg.com",
    "location": "New Cairo, Cairo, Egypt",
    "city": "Cairo",
    "country": "Egypt",
    "area": "New Cairo",
    "jobType": "Full Time",
    "workplaceArrangement": "Hybrid",
    "careerLevel": "Experienced",
    "category": "IT/Software Development",
    "experienceYearsMin": 7,
    "experienceYearsMax": 10,
    "vacancies": 2,
    "keywords": ["Oracle", "Oracle Database", "PL/SQL", "SQL"],
    "salaryMin": null,
    "salaryMax": null,
    "salaryCurrency": null,
    "salaryPeriod": null,
    "descriptionHtml": "<section><h2>Job Description</h2><p>...</p></section><section><h2>Job Requirements</h2><ul>...</ul></section>",
    "descriptionText": "Job Description We are seeking a highly experienced Oracle Database Developer...",
    "descriptionMarkdown": "### Job Description\n\nWe are seeking...\n\n### Job Requirements\n\n- Minimum 7 years...",
    "publishDate": "2026-04-21",
    "publishDateISO": "2026-04-21T13:22:14.000Z",
    "contentHash": "a3f9c1d2e7b84501",
    "summary": null,
    "source": "wuzzuf.net",
    "scrapedAt": "2026-04-23T10:15:32.000Z",
    "isRepost": false,
    "originalPublishDate": null,
    "originalUrl": null
}
````

***

### Examples

**Search software jobs in Cairo:**

```json
{
    "keyword": "software engineer",
    "city": "Cairo",
    "maxResults": 200
}
```

**All remote jobs posted in the last week:**

```json
{
    "workplaceArrangement": "remote",
    "daysOld": 7,
    "maxResults": 500
}
```

**Marketing internships in Egypt:**

```json
{
    "keyword": "marketing",
    "jobType": "internship",
    "country": "Egypt",
    "maxResults": 100
}
```

**Daily new listings (scheduled run):**

```json
{
    "daysOld": 1,
    "skipReposts": true,
    "maxResults": 1000
}
```

**From a specific search URL:**

```json
{
    "startUrls": [
        { "url": "https://wuzzuf.net/search/jobs?q=data+analyst&filters%5Bcity%5D%5B0%5D=Cairo" }
    ],
    "maxResults": 300
}
```

***

### 💰 Pricing

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

| Results | Cost |
|---------|------|
| 100 | ~$0.15 |
| 1,000 | ~$1.49 |
| 10,000 | ~$14.90 |
| 100,000 | ~$149.00 |

> Flat-rate alternatives typically charge $29–$49/month regardless of usage.

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

***

### Performance

| Run size | Approx. time |
|---|---|
| 100 results | ~10 seconds |
| 1,000 results | ~2 minutes |
| 10,000 results | ~15 minutes |
| 50,000 results | ~70 minutes |

Memory: 256 MB. Runs are I/O-bound; performance is stable across run sizes.

***

### Known limitations

- Salary data is only available when the employer chooses to disclose it (roughly 30–40% of listings).
- `companyName` is `null` for listings where the employer has chosen to remain anonymous.
- Wuzzuf limits search results to a maximum of 3,000 listings per query. Use multiple targeted queries to cover larger result sets.
- Listings may appear across multiple pages with slight variation in order; deduplication handles overlaps.

***

### Technical details

- **Source:** wuzzuf.net — Egypt's largest job board
- **Memory:** 256 MB
- **Repost storage:** KeyValueStore `wuzzuf-scraper-job-dedup`, 90-day TTL
- **Retry:** Automatic retry on network errors, 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

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

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

## `city` (type: `string`):

Filter by city (e.g. 'Cairo', 'Alexandria', 'Giza'). Leave empty for all cities.

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

Filter by country (e.g. 'Egypt', 'Saudi Arabia', 'United Arab Emirates'). Leave empty for all countries.

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

Filter by employment type. Accepted values: full\_time, part\_time, freelance\_project, internship, shift\_based, volunteering. Leave empty for all types.

## `workplaceArrangement` (type: `string`):

Filter by working model. Accepted values: on\_site, hybrid, remote. Leave empty for all.

## `careerLevel` (type: `string`):

Filter by seniority. Accepted values: Entry Level, Experienced, Manager, Senior Management, Student. Leave empty for all.

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

Filter by job category (e.g. 'IT/Software Development', 'Sales/Retail', 'Marketing/PR/Advertising'). Leave empty for all.

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

Only return jobs posted within this many days. 1 = last 24h, 7 = last week, 30 = last month. 0 = no restriction.

## `maxResults` (type: `integer`):

Maximum number of job listings to return. Use to control costs and run time.

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

Skip jobs already seen in a previous run. Uses a 90-day deduplication window.

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

Optional list of specific Wuzzuf search URLs to scrape (overrides keyword/filter inputs).

## Actor input object example

```json
{
  "keyword": "",
  "city": "",
  "country": "",
  "jobType": "",
  "workplaceArrangement": "",
  "careerLevel": "",
  "category": "",
  "daysOld": 0,
  "maxResults": 5,
  "skipReposts": false,
  "startUrls": []
}
```

# Actor output Schema

## `results` (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/wuzzuf-net-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/wuzzuf-net-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/wuzzuf-net-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Wuzzuf.net Scraper",
        "description": "Scrape job listings from Wuzzuf.net — Egypt's largest job board with 50,000+ active postings. Filter by keyword, city, job type, career level, and workplace arrangement.",
        "version": "0.0",
        "x-build-id": "jt70DAnai9kesqpuH"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/unfenced-group~wuzzuf-net-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-unfenced-group-wuzzuf-net-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~wuzzuf-net-scraper/runs": {
            "post": {
                "operationId": "runs-sync-unfenced-group-wuzzuf-net-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~wuzzuf-net-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-unfenced-group-wuzzuf-net-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": {
                    "keyword": {
                        "title": "Keyword",
                        "type": "string",
                        "description": "Job title, skill, or keyword to search for (e.g. 'software engineer', 'marketing manager').",
                        "default": ""
                    },
                    "city": {
                        "title": "City",
                        "type": "string",
                        "description": "Filter by city (e.g. 'Cairo', 'Alexandria', 'Giza'). Leave empty for all cities.",
                        "default": ""
                    },
                    "country": {
                        "title": "Country",
                        "type": "string",
                        "description": "Filter by country (e.g. 'Egypt', 'Saudi Arabia', 'United Arab Emirates'). Leave empty for all countries.",
                        "default": ""
                    },
                    "jobType": {
                        "title": "Job type",
                        "type": "string",
                        "description": "Filter by employment type. Accepted values: full_time, part_time, freelance_project, internship, shift_based, volunteering. Leave empty for all types.",
                        "default": ""
                    },
                    "workplaceArrangement": {
                        "title": "Workplace arrangement",
                        "type": "string",
                        "description": "Filter by working model. Accepted values: on_site, hybrid, remote. Leave empty for all.",
                        "default": ""
                    },
                    "careerLevel": {
                        "title": "Career level",
                        "type": "string",
                        "description": "Filter by seniority. Accepted values: Entry Level, Experienced, Manager, Senior Management, Student. Leave empty for all.",
                        "default": ""
                    },
                    "category": {
                        "title": "Category / Role",
                        "type": "string",
                        "description": "Filter by job category (e.g. 'IT/Software Development', 'Sales/Retail', 'Marketing/PR/Advertising'). Leave empty for all.",
                        "default": ""
                    },
                    "daysOld": {
                        "title": "Max age (days)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only return jobs posted within this many days. 1 = last 24h, 7 = last week, 30 = last month. 0 = no restriction.",
                        "default": 0
                    },
                    "maxResults": {
                        "title": "Max results",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of job listings to return. Use to control costs and run time.",
                        "default": 5
                    },
                    "skipReposts": {
                        "title": "Skip reposts",
                        "type": "boolean",
                        "description": "Skip jobs already seen in a previous run. Uses a 90-day deduplication window.",
                        "default": false
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Optional list of specific Wuzzuf search URLs to scrape (overrides keyword/filter inputs).",
                        "default": [],
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
