# Welcome to the Jungle Scraper (`unfenced-group/welcometothejungle-scraper`) Actor

Extract job listings from Welcome to the Jungle. Keyword search, 5 regional markets (EN/FR/ES/CS/SK), salary & remote filters, full descriptions. No proxy needed.

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

## Pricing

from $0.99 / 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

## Welcome to the Jungle Scraper
![Banner](https://i.imgur.com/aJUhdcy.png)

Extract structured job listings from **Welcome to the Jungle** — Europe's leading tech and startup job board with 5M+ monthly visitors and 10,000+ companies across France, the UK, the US, and 50+ countries. No API key, no account, and no browser required.

---

### Why this scraper?

#### 🌍 5 Regional Sites
Covers the English (global), French, Spanish, Czech, and Slovak WTTJ sites in a single actor. Select your target market with one parameter.

#### 💰 Salary Data
Extracts disclosed salary ranges — minimum, maximum, currency, and period (yearly/monthly) — directly from the search index where companies choose to publish them.

#### 🎯 Rich Filtering
Filter by contract type, remote policy, experience level, minimum salary, company size, and job language. Combine filters freely.

#### 📋 Full Job Descriptions
Enable `fetchDetails` to retrieve the complete job description, required skills, and recruitment process from each listing's detail page.

#### 🔄 Incremental Feed Mode
Enable `skipReposts` to receive only net-new listings on each run — ideal for daily scheduled feeds into job boards, ATS systems, or analytics pipelines.

#### 📍 Geographic Search
Provide any city, region, or country name and a radius to restrict results to a specific area.

---

### Input parameters

| Parameter | Type | Description | Default |
|---|---|---|---|
| `query` | string | Keywords to search — job title, skills, or any search term. Leave empty to browse all listings. | `""` |
| `websiteCountry` | select | WTTJ regional site: `en` (global), `fr`, `es`, `cs`, `sk`. Affects category label language. | `"en"` |
| `location` | string | City, region, or country (e.g. `"Paris"`, `"Berlin"`, `"United Kingdom"`). Leave empty for worldwide. | `""` |
| `locationRadius` | integer | Search radius around the location in kilometres. | `50` |
| `sortBy` | select | `relevance` or `date` (newest first). | `"relevance"` |
| `contractTypes` | array | Contract type filter: `full_time`, `part_time`, `temporary`, `internship`, `apprenticeship`, `freelance`, `vie`, `fixed_term`, `graduate_program`, `other`. | `[]` |
| `remoteTypes` | array | Remote policy filter: `no`, `partial`, `punctual`, `fulltime`, `unknown`. | `[]` |
| `experienceLevel` | select | Minimum experience: `0-1`, `1-3`, `3-5`, `5-10`, `10+`. Leave empty for all levels. | `""` |
| `salaryMin` | integer | Only return jobs with a disclosed minimum salary at or above this value. Set to `0` to disable. | `0` |
| `companySize` | select | Company size filter: `0-15`, `15-50`, `50-250`, `250-2000`, `2000+`. | `""` |
| `language` | string | Job language ISO code (e.g. `"en"`, `"fr"`, `"de"`). Leave empty for all. | `""` |
| `daysOld` | integer | Only return jobs published within this many days. Set to `0` to disable. | `0` |
| `maxResults` | integer | Maximum number of results. Set to `0` for unlimited. | `100` |
| `fetchDetails` | boolean | Fetch full description, skills, and recruitment process from each detail page. Disable for faster runs. | `true` |
| `skipReposts` | boolean | Skip jobs already returned in a previous run (90-day fingerprint cache). Use for daily feeds. | `false` |
| `startUrls` | array | Specific WTTJ job page URLs to scrape directly. When set, search filters are ignored. | `[]` |

---

### Output schema

#### Always present

| Field | Type | Description |
|---|---|---|
| `id` | string | WTTJ job reference (e.g. `FRAMA_o4N2pxO`). Unique per listing. |
| `url` | string | Canonical URL of the job listing on welcometothejungle.com. |
| `title` | string | Job title as published by the employer. |
| `companyName` | string | Name of the hiring company. |
| `companyUrl` | string \| null | WTTJ company profile URL. |
| `contractType` | string \| null | Contract type: `full_time`, `part_time`, `internship`, `apprenticeship`, `freelance`, `temporary`, `vie`, `fixed_term`, `graduate_program`, `other`. |
| `remote` | string \| null | Remote policy: `no`, `partial`, `punctual`, `fulltime`, `unknown`. |
| `experienceLevel` | string \| null | Minimum experience level reference (e.g. `3-5`). Null if not specified by employer. |
| `salaryMin` | number \| null | Minimum annual salary (null if employer did not disclose). |
| `salaryMax` | number \| null | Maximum annual salary (null if employer did not disclose). |
| `salaryCurrency` | string \| null | ISO currency code, e.g. `EUR`, `GBP`, `USD` (null if salary not disclosed). |
| `salaryPeriod` | string \| null | Salary period: `yearly` or `monthly` (null if not disclosed). |
| `locationCity` | string \| null | Primary office city. |
| `locationCountry` | string \| null | Country name or ISO code of the primary office. |
| `locationLat` | number \| null | Latitude of the primary office (null if unavailable). |
| `locationLng` | number \| null | Longitude of the primary office (null if unavailable). |
| `language` | string \| null | Language of the job posting (ISO 639-1, e.g. `en`, `fr`). |
| `sectors` | string[] | Industry sector tags associated with the listing. |
| `occupations` | string[] | Job category / occupation tags. |
| `tags` | string[] | Additional classification tags from WTTJ editorial sections. |
| `publishDate` | string \| null | Publication date in `YYYY-MM-DD` format. |
| `publishDateISO` | string \| null | Publication date in ISO 8601 format. |
| `summary` | string \| null | First 200 characters of the job description preview (from search index). |
| `source` | string | Always `"welcometothejungle.com"`. |
| `scrapedAt` | string | ISO timestamp of when the item was scraped. |
| `contentHash` | string | 16-character MD5 hash of the listing's key fields — useful for change detection. |
| `isRepost` | boolean | `true` if this listing was already returned in a previous run (requires `skipReposts` enabled). |
| `originalPublishDate` | string \| null | Publication date from the first time this listing was seen (for reposts). |
| `originalUrl` | string \| null | Original URL from the first time this listing was seen (for reposts). |

#### With `fetchDetails: true`

| Field | Type | Description |
|---|---|---|
| `descriptionHtml` | string \| null | Full job description as raw HTML from the detail page. |
| `descriptionText` | string \| null | Full job description as plain text (HTML tags stripped). |
| `descriptionMarkdown` | string \| null | Full job description converted to Markdown. |
| `applyUrl` | string \| null | External application URL where candidates submit their application (null for in-platform applications). |
| `skills` | string[] \| null | Required skills extracted from the listing's structured data. |
| `recruitmentProcess` | string \| null | Plain text description of the hiring process (null if not published by employer). |

#### Example output record

```json
{
  "id": "ELIS_MPRq2wg",
  "url": "https://www.welcometothejungle.com/en/companies/elis-france/jobs/responsable-du-service-logistique-h-f_saint-louis_ELIS_MPRq2wg",
  "title": "Responsable du service logistique H/F",
  "companyName": "Elis France",
  "companyUrl": "https://www.welcometothejungle.com/en/companies/elis-france",
  "contractType": "full_time",
  "remote": "no",
  "experienceLevel": "3-5",
  "salaryMin": 45000,
  "salaryMax": 52000,
  "salaryCurrency": "EUR",
  "salaryPeriod": "yearly",
  "locationCity": "Saint-Louis",
  "locationCountry": "FR",
  "locationLat": 47.5896,
  "locationLng": 7.5569,
  "language": "fr",
  "sectors": ["Logistics", "Supply chain"],
  "occupations": ["Operations", "Supply chain management"],
  "tags": [],
  "publishDate": "2026-04-20",
  "publishDateISO": "2026-04-20T08:14:00.000Z",
  "summary": "Dans le cadre de notre développement, nous recherchons un(e) Responsable du service logistique...",
  "descriptionHtml": "<p>Dans le cadre de notre développement...</p>",
  "descriptionText": "Dans le cadre de notre développement, nous recherchons...",
  "descriptionMarkdown": "Dans le cadre de notre développement, nous recherchons...",
  "applyUrl": null,
  "skills": ["Supply chain management", "SAP", "Team leadership"],
  "recruitmentProcess": "Phone screen → Technical interview → Final interview with HR",
  "source": "welcometothejungle.com",
  "scrapedAt": "2026-04-24T10:22:11.000Z",
  "contentHash": "a3f2c1d4e5b69871",
  "isRepost": false,
  "originalPublishDate": null,
  "originalUrl": null
}
````

***

### Examples

**Search for software engineer roles in Paris:**

```json
{
  "query": "software engineer",
  "websiteCountry": "fr",
  "location": "Paris",
  "locationRadius": 30,
  "maxResults": 200
}
```

**Filter for remote full-time roles with salary disclosure, sorted by date:**

```json
{
  "query": "product manager",
  "websiteCountry": "en",
  "contractTypes": ["full_time"],
  "remoteTypes": ["fulltime", "partial"],
  "salaryMin": 60000,
  "sortBy": "date",
  "maxResults": 100
}
```

**Scrape specific job URLs directly:**

```json
{
  "startUrls": [
    { "url": "https://www.welcometothejungle.com/en/companies/elis-france/jobs/responsable-du-service-logistique-h-f_saint-louis_ELIS_MPRq2wg" },
    { "url": "https://www.welcometothejungle.com/fr/companies/axa/jobs/data-scientist-f-h_paris_AXA_Ab3De7X" }
  ],
  "fetchDetails": true
}
```

**Daily feed — only new listings from the past 24 hours:**

```json
{
  "websiteCountry": "en",
  "daysOld": 1,
  "skipReposts": true,
  "sortBy": "date",
  "maxResults": 0
}
```

***

### 💰 Pricing

**$0.99 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 | ~$0.99 |
| 10,000 | ~$9.90 |
| 100,000 | ~$99.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 | fetchDetails | Approx. time |
|---|---|---|
| 100 results | Enabled | ~2–3 min |
| 1,000 results | Enabled | ~15–20 min |
| 1,000 results | Disabled | ~2–3 min |
| 10,000 results | Disabled | ~15–20 min |

***

### Known limitations

- **Keyword search filters the local index only.** The `query` parameter improves relevance but does not guarantee exact matches — use `startUrls` for specific listings.
- **Salary disclosure is employer-controlled.** Many companies do not publish salary ranges; `salaryMin` and `salaryMax` will be `null` for those listings.
- **Location and contract type require `fetchDetails: true`.** These fields are enriched from the detail page and may be `null` with `fetchDetails: false`.
- **Description requires `fetchDetails: true`.** All three description format fields are `null` without detail fetching.
- **No contact person data** is collected, in line with GDPR best practices.
- **Remote policy** (`remote` field) has lower fill rate as WTTJ encodes this in custom structured data not always present in JSON-LD.

***

### Technical details

- **Source:** welcometothejungle.com — Europe's leading tech and startup job board
- **Memory:** 512 MB
- **Coverage:** English (global), French, Spanish, Czech, Slovak regional sites
- **Repost storage:** KeyValueStore `welcometothejungle-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.

***

*Part of the [Unfenced Group](https://apify.com/unfenced-group) European job board scraper portfolio — 50+ job markets covered.*
*Built by [unfenced-group](https://apify.com/unfenced-group) · Issues? Open a ticket or send a message.*

# Actor input Schema

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

Keywords to search for — job title, skills, or any search term. Leave empty to browse all listings.

## `websiteCountry` (type: `string`):

Which WTTJ regional site to scrape. Affects the job index and category label language. Job titles and descriptions remain in their original language.

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

City, region, or country to filter by (e.g. "Paris", "Berlin", "United Kingdom"). Leave empty or set to "Worldwide" to disable geographic filtering.

## `locationRadius` (type: `integer`):

Search radius around the location in kilometres. Only applies when Location is set.

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

Sort order for results.

## `contractTypes` (type: `array`):

Filter by one or more contract types. Leave empty to include all types.

## `remoteTypes` (type: `array`):

Filter by remote work policy. Leave empty to include all policies.

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

Minimum years of experience required. Leave empty to include all levels.

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

Only return jobs with a disclosed minimum salary at or above this value (local currency). Set to 0 to disable.

## `companySize` (type: `string`):

Filter by number of employees at the hiring company. Leave empty for all sizes.

## `language` (type: `string`):

Filter by the language of the job posting (ISO 639-1 code, e.g. "en", "fr", "de"). Leave empty to include all languages.

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

Only return jobs published within this many days. Set to 0 to disable the date filter.

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

Maximum number of job listings to return. Set to 0 for unlimited (up to ~10,000).

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

Fetch the full job description, required skills, and recruitment process from each job's detail page. Increases run time proportionally. Disable for faster runs when you only need list-level data.

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

Skip jobs that were already returned in a previous run of this actor (using a 90-day fingerprint cache). Useful for daily feed runs where you only want new listings.

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

Optional list of specific Welcome to the Jungle job page URLs to scrape directly. When provided, the search filters above are ignored.

## Actor input object example

```json
{
  "query": "",
  "websiteCountry": "en",
  "location": "",
  "locationRadius": 50,
  "sortBy": "relevance",
  "contractTypes": [],
  "remoteTypes": [],
  "experienceLevel": "",
  "salaryMin": 0,
  "companySize": "",
  "language": "",
  "daysOld": 0,
  "maxResults": 100,
  "fetchDetails": true,
  "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/welcometothejungle-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/welcometothejungle-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/welcometothejungle-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Welcome to the Jungle Scraper",
        "description": "Extract job listings from Welcome to the Jungle. Keyword search, 5 regional markets (EN/FR/ES/CS/SK), salary & remote filters, full descriptions. No proxy needed.",
        "version": "0.0",
        "x-build-id": "5WWP5yER79QPD4gFd"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/unfenced-group~welcometothejungle-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-unfenced-group-welcometothejungle-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~welcometothejungle-scraper/runs": {
            "post": {
                "operationId": "runs-sync-unfenced-group-welcometothejungle-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~welcometothejungle-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-unfenced-group-welcometothejungle-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": {
                    "query": {
                        "title": "Search query",
                        "type": "string",
                        "description": "Keywords to search for — job title, skills, or any search term. Leave empty to browse all listings.",
                        "default": ""
                    },
                    "websiteCountry": {
                        "title": "Website language / region",
                        "enum": [
                            "en",
                            "fr",
                            "es",
                            "cs",
                            "sk"
                        ],
                        "type": "string",
                        "description": "Which WTTJ regional site to scrape. Affects the job index and category label language. Job titles and descriptions remain in their original language.",
                        "default": "en"
                    },
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "City, region, or country to filter by (e.g. \"Paris\", \"Berlin\", \"United Kingdom\"). Leave empty or set to \"Worldwide\" to disable geographic filtering.",
                        "default": ""
                    },
                    "locationRadius": {
                        "title": "Location radius (km)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Search radius around the location in kilometres. Only applies when Location is set.",
                        "default": 50
                    },
                    "sortBy": {
                        "title": "Sort by",
                        "enum": [
                            "relevance",
                            "date"
                        ],
                        "type": "string",
                        "description": "Sort order for results.",
                        "default": "relevance"
                    },
                    "contractTypes": {
                        "title": "Contract types",
                        "type": "array",
                        "description": "Filter by one or more contract types. Leave empty to include all types.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "full_time",
                                "part_time",
                                "temporary",
                                "internship",
                                "apprenticeship",
                                "freelance",
                                "vie",
                                "fixed_term",
                                "graduate_program",
                                "other"
                            ],
                            "enumTitles": [
                                "Full-time",
                                "Part-time",
                                "Temporary / CDD",
                                "Internship / Stage",
                                "Apprenticeship / Alternance",
                                "Freelance",
                                "VIE",
                                "Fixed-term",
                                "Graduate program",
                                "Other"
                            ]
                        },
                        "default": []
                    },
                    "remoteTypes": {
                        "title": "Remote work policy",
                        "type": "array",
                        "description": "Filter by remote work policy. Leave empty to include all policies.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "no",
                                "partial",
                                "punctual",
                                "fulltime",
                                "unknown"
                            ],
                            "enumTitles": [
                                "On-site only",
                                "Partial remote (hybrid)",
                                "Punctual remote",
                                "Fully remote",
                                "Not specified"
                            ]
                        },
                        "default": []
                    },
                    "experienceLevel": {
                        "title": "Minimum experience level",
                        "enum": [
                            "",
                            "0-1",
                            "1-3",
                            "3-5",
                            "5-10",
                            "10+"
                        ],
                        "type": "string",
                        "description": "Minimum years of experience required. Leave empty to include all levels.",
                        "default": ""
                    },
                    "salaryMin": {
                        "title": "Minimum salary (annual)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only return jobs with a disclosed minimum salary at or above this value (local currency). Set to 0 to disable.",
                        "default": 0
                    },
                    "companySize": {
                        "title": "Company size",
                        "enum": [
                            "",
                            "0-15",
                            "15-50",
                            "50-250",
                            "250-2000",
                            "2000+"
                        ],
                        "type": "string",
                        "description": "Filter by number of employees at the hiring company. Leave empty for all sizes.",
                        "default": ""
                    },
                    "language": {
                        "title": "Job language",
                        "type": "string",
                        "description": "Filter by the language of the job posting (ISO 639-1 code, e.g. \"en\", \"fr\", \"de\"). Leave empty to include all languages.",
                        "default": ""
                    },
                    "daysOld": {
                        "title": "Max age (days)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only return jobs published within this many days. Set to 0 to disable the date filter.",
                        "default": 0
                    },
                    "maxResults": {
                        "title": "Max results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of job listings to return. Set to 0 for unlimited (up to ~10,000).",
                        "default": 100
                    },
                    "fetchDetails": {
                        "title": "Fetch full job details",
                        "type": "boolean",
                        "description": "Fetch the full job description, required skills, and recruitment process from each job's detail page. Increases run time proportionally. Disable for faster runs when you only need list-level data.",
                        "default": true
                    },
                    "skipReposts": {
                        "title": "Skip already-seen jobs",
                        "type": "boolean",
                        "description": "Skip jobs that were already returned in a previous run of this actor (using a 90-day fingerprint cache). Useful for daily feed runs where you only want new listings.",
                        "default": false
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Optional list of specific Welcome to the Jungle job page URLs to scrape directly. When provided, the search filters above are ignored.",
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
