{
  "openapi": "3.0.1",
  "info": {
    "title": "Reed Jobs Scraper | UK Job Listings & Hiring Data",
    "description": "Reed jobs scraper, UK jobs, hiring data, job listings, recruiters, staffing, remote jobs, London, structured JSON, job board, market research, CRM, webhook, AI/LLM, real-time, Apify actor.",
    "version": "0.0",
    "x-build-id": "1F8MhjmTHBc4n3WFz"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/b2b_leads~Reed-Jobs-Real-Time-Data/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-b2b_leads-Reed-Jobs-Real-Time-Data",
        "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/b2b_leads~Reed-Jobs-Real-Time-Data/runs": {
      "post": {
        "operationId": "runs-sync-b2b_leads-Reed-Jobs-Real-Time-Data",
        "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/b2b_leads~Reed-Jobs-Real-Time-Data/run-sync": {
      "post": {
        "operationId": "run-sync-b2b_leads-Reed-Jobs-Real-Time-Data",
        "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": {
          "enableJobSearch": {
            "title": "Job search",
            "type": "boolean",
            "description": "Search Reed.co.uk by keyword and location. Enabled by default — run immediately with the prefilled example below.",
            "default": true
          },
          "jobKeywords": {
            "title": "Keywords",
            "type": "array",
            "description": "One search per keyword (e.g. software engineer, data analyst, project manager).",
            "default": [
              "software engineer"
            ],
            "items": {
              "type": "string"
            }
          },
          "jobLocation": {
            "title": "Location",
            "type": "string",
            "description": "City or region on Reed.co.uk (e.g. London, Manchester, Birmingham). Leave empty for UK-wide results.",
            "default": "London"
          },
          "jobTitle": {
            "title": "Title filter",
            "type": "string",
            "description": "Optional. Narrow results to jobs whose title contains this text.",
            "default": ""
          },
          "jobCompany": {
            "title": "Company filter",
            "type": "string",
            "description": "Optional. Narrow results to a specific employer name.",
            "default": ""
          },
          "jobTypes": {
            "title": "Contract type",
            "type": "array",
            "description": "Filter by permanent, contract, or temporary roles.",
            "items": {
              "type": "string",
              "enum": [
                "permanent",
                "contract",
                "temporary"
              ],
              "enumTitles": [
                "Permanent",
                "Contract",
                "Temporary"
              ]
            },
            "default": []
          },
          "jobEmploymentHours": {
            "title": "Employment hours",
            "type": "array",
            "description": "Filter by full-time or part-time roles.",
            "items": {
              "type": "string",
              "enum": [
                "full_time",
                "part_time"
              ],
              "enumTitles": [
                "Full-time",
                "Part-time"
              ]
            },
            "default": []
          },
          "jobRemote": {
            "title": "Work style",
            "type": "array",
            "description": "Filter by remote, hybrid, or on-site work arrangements.",
            "items": {
              "type": "string",
              "enum": [
                "remote",
                "hybrid",
                "onsite"
              ],
              "enumTitles": [
                "Remote",
                "Hybrid",
                "On-site"
              ]
            },
            "default": []
          },
          "jobDatePosted": {
            "title": "Date posted",
            "enum": [
              "any",
              "month",
              "week",
              "day"
            ],
            "type": "string",
            "description": "Show only jobs posted within this window.",
            "default": "any"
          },
          "jobSort": {
            "title": "Sort order",
            "enum": [
              "relevance",
              "date"
            ],
            "type": "string",
            "description": "Order results by relevance or most recently posted.",
            "default": "relevance"
          },
          "graduateOnly": {
            "title": "Graduate jobs only",
            "type": "boolean",
            "description": "Return only graduate-level listings.",
            "default": false
          },
          "directEmployerOnly": {
            "title": "Direct employer only",
            "type": "boolean",
            "description": "Prefer listings posted directly by employers.",
            "default": false
          },
          "hideTrainingJobs": {
            "title": "Hide training listings",
            "type": "boolean",
            "description": "Exclude training and course-style listings from results.",
            "default": false
          },
          "salaryFrom": {
            "title": "Minimum salary (GBP)",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum annual salary in British pounds. Set to 0 for no minimum.",
            "default": 0
          },
          "salaryTo": {
            "title": "Maximum salary (GBP)",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum annual salary in British pounds. Set to 0 for no maximum.",
            "default": 0
          },
          "proximityMiles": {
            "title": "Search radius (miles)",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Distance around your location to include in results.",
            "default": 10
          },
          "jobsPerQuery": {
            "title": "Jobs per keyword",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Maximum jobs to collect for each keyword search.",
            "default": 25
          },
          "fetchJobDetails": {
            "title": "Include full descriptions",
            "type": "boolean",
            "description": "Collect the complete job description, sector, and employer details for each listing.",
            "default": true
          },
          "enableCompanyJobs": {
            "title": "Company jobs",
            "type": "boolean",
            "description": "Collect all open roles from Reed employer profile pages.",
            "default": false
          },
          "companyUrls": {
            "title": "Company profile URLs",
            "type": "array",
            "description": "Reed employer profile links (e.g. https://www.reed.co.uk/jobs/awin-69909/p69909).",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "jobsPerCompany": {
            "title": "Jobs per company",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Maximum jobs to collect from each company profile.",
            "default": 25
          },
          "enableScrapeByUrl": {
            "title": "Job links",
            "type": "boolean",
            "description": "Collect structured data from individual Reed job URLs you already have.",
            "default": false
          },
          "jobUrls": {
            "title": "Job URLs",
            "type": "array",
            "description": "Full Reed job page URLs (e.g. https://www.reed.co.uk/jobs/software-engineer/57102667).",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "maxItems": {
            "title": "Max total items",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "Global cap across all enabled features in one run.",
            "default": 10000
          },
          "webhookUrl": {
            "title": "Webhook URL",
            "type": "string",
            "description": "Optional. Every record is always saved to the run's dataset — this webhook is an ADDITIONAL real-time push. When set, each new job is also POSTed to this URL (CRM, Slack, Zapier, Make, Google Sheets).",
            "default": ""
          },
          "webhookFormat": {
            "title": "Webhook format",
            "enum": [
              "json",
              "slack"
            ],
            "type": "string",
            "description": "json = full job record object; slack = Slack-friendly message payload.",
            "default": "json"
          },
          "includeRaw": {
            "title": "Include extended record data",
            "type": "boolean",
            "description": "Attach extended source data on each record. Larger output — for advanced integrations only.",
            "default": false
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Apify proxy settings. UK residential proxy is enabled by default for reliable Reed.co.uk access.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ],
              "apifyProxyCountry": "GB"
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}