# Fuzu Jobs Scraper (`crawlerbros/fuzu-jobs-scraper`) Actor

Scrape live job listings from Fuzu.com across Kenya, Nigeria, and Uganda. Search by keyword, town, category, industry, and seniority, or fetch full job details from listing URLs.

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

## Pricing

from $3.00 / 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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## Fuzu Jobs Scraper

Scrape live job listings from [Fuzu.com](https://www.fuzu.com), the pan-African career platform, across **Kenya, Nigeria, and Uganda**. Search by keyword, town, job category, industry, and seniority level, or fetch full job details from listing URLs. No login, no cookies, no paid proxy required.

> **Note:** the originally requested `brightermonday.co.ke` target already has a dedicated actor in this catalog (BrighterMonday Scraper). To avoid a duplicate, this actor instead covers **Fuzu** — a same-category African job board that additionally spans Nigeria and Uganda, giving broader market coverage.

### What this actor does

- **Two modes:** `search` (keyword + filters) and `byUrls` (direct listing fetch)
- **Three markets:** Kenya, Nigeria, Uganda — switch via `country`, or just pick a `town` and the country is inferred automatically
- **Filters:** town, job category, industry, seniority level, sort order, recency, keyword
- **Rich fields per job:** full description, salary band (when disclosed), education/experience/language requirements, company info
- **Empty fields are omitted** — every record only contains data actually present on the listing

### Output per job

- `jobId` — Fuzu's internal listing ID
- `jobSlug` — URL slug for the listing (last path segment of `sourceUrl`)
- `title`, `companyId`, `companyName`, `companySlug`, `companyUrl`, `companyLogoUrl`
- `location`, `country`, `countryCode`
- `category` — job function (e.g. "Information technology, software development, data")
- `industry` — employer's industry
- `seniorityLevel` — Entry and Basic-level / Mid-level / Senior-level
- `employmentType` — Full time / Part time
- `employmentTypeSlug` — machine-readable form of `employmentType` (e.g. `full-time`)
- `positionType` — Fuzu's raw contract-term value (`permanent` / `fixed_term`)
- `hiringType` — Direct employment / Staffing / outsourced / Internship
- `applicationType` — External / Internal (Fuzu) / Fast Apply
- `salaryMin`, `salaryMax`, `salaryCurrency`, `salaryPeriod` (only when disclosed)
- `salaryNote` — free-text salary note (e.g. "Salary plus commission") when no numeric band is disclosed
- `requiredEducation`, `requiredExperience`, `requiredLanguages[]`
- `descriptionHtml`, `descriptionText`
- `datePosted`, `validThrough` — ISO 8601 timestamps
- `viewsCount`, `expired`
- `applicationUrl`, `applicationEmail`, `applicationPostalAddress` — how to apply, when the employer handles applications outside Fuzu (by external site, email, or postal mail)
- `locationSlug` — Fuzu's town slug for the job location (matches the `town` input values)
- `sourceUrl` — canonical listing URL
- `recordType: "job"`, `scrapedAt`

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `mode` | string | `search` | `search` / `byUrls` |
| `country` | select | `kenya` | `kenya` / `nigeria` / `uganda` |
| `searchQuery` | string | `accountant` | Free-text keyword (mode=search); leave empty to browse all listings |
| `town` | select | – | Filter to a specific town/city; automatically switches `country` to match |
| `category` | select | – | Filter to a job category (shared taxonomy across all 3 countries) |
| `industry` | select | – | Filter to an employer industry (shared taxonomy) |
| `seniority` | select | – | Filter to a seniority level |
| `sortBy` | select | `top` | `top` / `latest` / `closing` |
| `publishedWithin` | select | – | `day` / `week` / `month` |
| `containsKeyword` | string | – | Substring filter on title/company/description |
| `listingUrls` | array | – | Direct listing URLs (mode=byUrls) |
| `maxItems` | int | `30` | Hard cap (1–1000) |

#### Example: mid-level IT jobs in Nairobi

```json
{
  "mode": "search",
  "country": "kenya",
  "town": "nairobi",
  "category": "5",
  "seniority": "middle",
  "maxItems": 30
}
```

#### Example: fetch specific listings

```json
{
  "mode": "byUrls",
  "listingUrls": ["https://www.fuzu.com/kenya/jobs/accountant-i-thika-technical-training-institute"]
}
```

### Use cases

- **Job seekers** — build custom alerts across three African markets in one place.
- **Recruiters & staffing agencies** — monitor market rates and competitor postings across Kenya, Nigeria, and Uganda.
- **Labor-market researchers** — track hiring trends and salary bands across East and West Africa.
- **HR tech products** — power a job-aggregation feature with fresh, structured listing data.

### FAQs

**Does this require a Fuzu account or API key?**
No. The actor scrapes publicly available listing pages — no login, cookies, or API key needed.

**How current is the data?**
Every run fetches live pages directly from fuzu.com; there is no caching layer.

**Why are some fields missing on some jobs?**
Fuzu listings vary — not every job discloses a salary. Only fields actually present on the page are included (no placeholder/sentinel values).

**What's the difference between `applicationType` and `hiringType`?** `applicationType` describes *where* you apply — through Fuzu directly (`Internal (Fuzu)`/`Fast Apply`) or an external site/email (`External`). `hiringType` describes the *employment arrangement* the employer is offering — `Direct employment`, `Staffing / outsourced` (via a staffing agency), or `Internship`.

**When are `applicationUrl` / `applicationEmail` present?** Only when the employer routes applications outside Fuzu (an `applicationType` of `External`). Most listings use Fuzu's own internal application flow, so these fields are frequently omitted — that's expected, not a bug.

**Can I search across all three countries at once?**
Each run targets one country (or one town, which implies its country). Run the actor multiple times with different `country`/`town` values to cover all three markets.

# Actor input Schema

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

What to fetch.

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

Fuzu market to search. Overridden automatically if `town` belongs to a different country.

## `searchQuery` (type: `string`):

Free-text keyword — job title, skill, or company name. Leave empty to browse all listings for the selected country.

## `town` (type: `string`):

Filter to a specific town/city. Selecting a town automatically searches that town's country regardless of the `country` field above.

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

Filter to a Fuzu job category (shared taxonomy across all countries).

## `industry` (type: `string`):

Filter to a Fuzu employer industry (shared taxonomy across all countries).

## `seniority` (type: `string`):

Filter to a seniority level.

## `sortBy` (type: `string`):

Result ordering.

## `publishedWithin` (type: `string`):

Only include jobs posted within this time window.

## `containsKeyword` (type: `string`):

Case-insensitive substring filter applied to title, company name, and description.

## `listingUrls` (type: `array`):

Direct Fuzu job listing URLs, e.g. https://www.fuzu.com/kenya/jobs/operations-manager-a-fast-growing-travel-services-company

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

Hard cap on emitted records.

## Actor input object example

```json
{
  "mode": "search",
  "country": "kenya",
  "searchQuery": "accountant",
  "town": "",
  "category": "",
  "industry": "",
  "seniority": "",
  "sortBy": "top",
  "publishedWithin": "",
  "listingUrls": [],
  "maxItems": 30
}
```

# Actor output Schema

## `jobs` (type: `string`):

Dataset containing all scraped Fuzu 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 = {
    "mode": "search",
    "country": "kenya",
    "searchQuery": "accountant",
    "sortBy": "top",
    "listingUrls": [],
    "maxItems": 30
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/fuzu-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 = {
    "mode": "search",
    "country": "kenya",
    "searchQuery": "accountant",
    "sortBy": "top",
    "listingUrls": [],
    "maxItems": 30,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/fuzu-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 '{
  "mode": "search",
  "country": "kenya",
  "searchQuery": "accountant",
  "sortBy": "top",
  "listingUrls": [],
  "maxItems": 30
}' |
apify call crawlerbros/fuzu-jobs-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,crawlerbros/fuzu-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/eIQ4oa7vEKqfFKCH7/builds/0Eabv7GwhjAnQe5Fd/openapi.json
