{
  "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}