{
  "openapi": "3.0.1",
  "info": {
    "title": "Reed.co.uk Jobs Scraper - UK Job Listings",
    "description": "Scrape UK jobs from Reed.co.uk by keyword, location, salary, sector, contract type, remote option or date posted. Returns title, employer, salary, full description and application URL.",
    "version": "1.0",
    "x-build-id": "VdSNjyhPjJJlMPb3P"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/parseforge~reed-co-uk-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-parseforge-reed-co-uk-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/parseforge~reed-co-uk-scraper/runs": {
      "post": {
        "operationId": "runs-sync-parseforge-reed-co-uk-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/parseforge~reed-co-uk-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-parseforge-reed-co-uk-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": {
          "startUrls": {
            "title": "Start URLs",
            "type": "array",
            "description": "Paste one or more Reed.co.uk search URLs (e.g. https://www.reed.co.uk/jobs/data-scientist-jobs-in-london). If provided, these override the keyword/location/filter inputs below.",
            "items": {
              "type": "string"
            }
          },
          "keywords": {
            "title": "Keywords",
            "type": "string",
            "description": "Search term (e.g. 'data scientist', 'nurse', 'project manager'). Leave blank to browse all jobs."
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "UK town, city or county (e.g. 'london', 'manchester', 'greater-manchester', 'birmingham'). Leave blank for all of UK."
          },
          "maxItems": {
            "title": "Max Items",
            "minimum": 1,
            "maximum": 1000000,
            "type": "integer",
            "description": "Free users: Limited to 10 items (preview). Paid users: Optional, max 1,000,000"
          },
          "proximity": {
            "title": "Distance From Location (miles)",
            "minimum": 0,
            "maximum": 50,
            "type": "integer",
            "description": "Search radius around the location. Default 10 miles."
          },
          "salaryFrom": {
            "title": "Minimum Salary (£)",
            "minimum": 0,
            "maximum": 1000000,
            "type": "integer",
            "description": "Filter out jobs paying less than this amount per year."
          },
          "salaryTo": {
            "title": "Maximum Salary (£)",
            "minimum": 0,
            "maximum": 1000000,
            "type": "integer",
            "description": "Filter out jobs paying more than this amount per year."
          },
          "contractTypes": {
            "title": "Contract Types",
            "uniqueItems": true,
            "type": "array",
            "description": "Filter by contract type. Leave empty for all.",
            "items": {
              "type": "string",
              "enum": [
                "perm",
                "contract",
                "temp"
              ],
              "enumTitles": [
                "Permanent",
                "Contract",
                "Temporary"
              ]
            }
          },
          "workHours": {
            "title": "Work Hours",
            "uniqueItems": true,
            "type": "array",
            "description": "Filter by full-time or part-time. Leave empty for all.",
            "items": {
              "type": "string",
              "enum": [
                "fullTime",
                "partTime"
              ],
              "enumTitles": [
                "Full-time",
                "Part-time"
              ]
            }
          },
          "remoteWorkingOption": {
            "title": "Remote Working",
            "enum": [
              "notSpecified",
              "hybrid",
              "fullyRemote"
            ],
            "type": "string",
            "description": "Filter by remote working option.",
            "default": "notSpecified"
          },
          "datePosted": {
            "title": "Date Posted",
            "enum": [
              "anytime",
              "today",
              "lastThreeDays",
              "lastSevenDays",
              "lastFourteenDays"
            ],
            "type": "string",
            "description": "Filter by how recently the job was posted.",
            "default": "anytime"
          },
          "sectors": {
            "title": "Sectors",
            "uniqueItems": true,
            "type": "array",
            "description": "Filter by job sector (multi-select). Leave empty for all sectors.",
            "items": {
              "type": "string",
              "enum": [
                "2",
                "100",
                "3",
                "1964",
                "5",
                "500",
                "146",
                "66",
                "68",
                "1961",
                "12",
                "1962",
                "117",
                "1722",
                "21",
                "169",
                "36",
                "6",
                "24",
                "16",
                "52",
                "101",
                "92",
                "168",
                "18",
                "71",
                "1700",
                "338",
                "90",
                "30",
                "89",
                "1963",
                "34",
                "1755",
                "11",
                "1909",
                "1907"
              ],
              "enumTitles": [
                "Accountancy",
                "Accountancy (Qualified)",
                "Admin, Secretarial & PA",
                "Apprenticeships",
                "Banking",
                "Charity & Voluntary",
                "Construction & Property",
                "Customer Service",
                "Education",
                "Energy",
                "Engineering",
                "Estate Agency",
                "Financial Services",
                "FMCG",
                "General/Other",
                "Graduate Training & Internships",
                "Health & Medicine",
                "Hospitality & Catering",
                "Human Resources",
                "Insurance",
                "IT & Telecoms",
                "Legal",
                "Leisure & Tourism",
                "Manufacturing",
                "Marketing & PR",
                "Media, Digital & Creative",
                "Motoring & Automotive",
                "Recruitment Consultancy",
                "Retail",
                "Sales",
                "Scientific",
                "Security & Safety",
                "Social Care",
                "Strategy & Consultancy",
                "Transport & Logistics",
                "Training",
                "Other Strategy & Consultancy"
              ]
            }
          },
          "postedBy": {
            "title": "Posted By",
            "enum": [
              "any",
              "agency",
              "direct"
            ],
            "type": "string",
            "description": "Filter by who posted the job.",
            "default": "any"
          },
          "isEasyApply": {
            "title": "Easy Apply Only",
            "type": "boolean",
            "description": "Only return jobs that can be applied to with one click.",
            "default": false
          },
          "isEarlyBird": {
            "title": "Early Bird Only",
            "type": "boolean",
            "description": "Only return Early Bird (recently posted, high response) jobs.",
            "default": false
          },
          "visaSponsorship": {
            "title": "Visa Sponsorship Only",
            "type": "boolean",
            "description": "Only return jobs offering visa sponsorship.",
            "default": false
          },
          "sortBy": {
            "title": "Sort By",
            "enum": [
              "default",
              "dateDesc",
              "salaryDesc",
              "salaryAsc",
              "distance"
            ],
            "type": "string",
            "description": "How results should be ordered.",
            "default": "default"
          },
          "proxyConfiguration": {
            "title": "Proxy Configuration",
            "type": "object",
            "description": "Reed.co.uk sits behind Cloudflare; residential proxies give the most reliable results."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}