{
  "openapi": "3.0.1",
  "info": {
    "title": "Reed.co.uk Jobs Scraper — UK Salaries & Details",
    "description": "From $0.50 per 1,000 jobs — full details included, one flat per-job price. Scrape Reed.co.uk UK jobs by keyword, location, salary band, contract type & date posted: parsed salary, recruiter, full description, remote flag. Saved-search monitor with Slack/email/webhook alerts. No login or API key.",
    "version": "0.1",
    "x-build-id": "8vW8KbbK4OElvddzH"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/scrapersdelight~reed-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-scrapersdelight-reed-jobs-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/scrapersdelight~reed-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-scrapersdelight-reed-jobs-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/scrapersdelight~reed-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-scrapersdelight-reed-jobs-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": {
          "keywords": {
            "title": "Keywords",
            "type": "string",
            "description": "Job-title / skill keywords, exactly as you'd type them into reed.co.uk (e.g. 'python developer', 'registered nurse'). Leave empty to sweep ALL live UK jobs (100k+ — combine with filters and a maxItems cap)."
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "UK town/city/postcode (e.g. 'London', 'Manchester', 'SW1A'). Leave empty for nationwide."
          },
          "proximity": {
            "title": "Search radius (miles)",
            "minimum": 0,
            "maximum": 50,
            "type": "integer",
            "description": "Radius around the location, in miles. Site-supported values: 0, 1, 3, 5, 10, 15, 20, 30, 50 (other values are rounded down to the nearest supported one in code). Ignored when no location is set.",
            "default": 10
          },
          "salaryFrom": {
            "title": "Min salary (£/year)",
            "minimum": 0,
            "type": "integer",
            "description": "Only jobs paying at/above this annual GBP salary. Leave empty for no floor."
          },
          "salaryTo": {
            "title": "Max salary (£/year)",
            "minimum": 0,
            "type": "integer",
            "description": "Only jobs paying at/below this annual GBP salary. Leave empty for no cap."
          },
          "datePosted": {
            "title": "Date posted",
            "enum": [
              "anytime",
              "today",
              "lastthreedays",
              "lastweek",
              "lasttwoweeks"
            ],
            "type": "string",
            "description": "Only jobs posted within this window (server-side filter — ideal for monitors and fresh-leads runs).",
            "default": "anytime"
          },
          "permanent": {
            "title": "Permanent",
            "type": "boolean",
            "description": "Only permanent roles. Combine the five job-type switches freely; all off = any type.",
            "default": false
          },
          "contract": {
            "title": "Contract",
            "type": "boolean",
            "description": "Only contract roles.",
            "default": false
          },
          "temp": {
            "title": "Temporary",
            "type": "boolean",
            "description": "Only temporary roles.",
            "default": false
          },
          "fullTime": {
            "title": "Full-time",
            "type": "boolean",
            "description": "Only full-time roles.",
            "default": false
          },
          "partTime": {
            "title": "Part-time",
            "type": "boolean",
            "description": "Only part-time roles.",
            "default": false
          },
          "postedBy": {
            "title": "Posted by",
            "enum": [
              "any",
              "agency",
              "direct"
            ],
            "type": "string",
            "description": "Restrict to jobs posted by recruitment agencies or directly by employers.",
            "default": "any"
          },
          "graduateOnly": {
            "title": "Graduate jobs only",
            "type": "boolean",
            "description": "Only graduate-suitable roles.",
            "default": false
          },
          "easyApplyOnly": {
            "title": "Easy Apply only",
            "type": "boolean",
            "description": "Only jobs with Reed's one-click Easy Apply.",
            "default": false
          },
          "visaSponsorship": {
            "title": "Visa sponsorship",
            "type": "boolean",
            "description": "Only jobs flagged as offering visa sponsorship.",
            "default": false
          },
          "hideTrainingJobs": {
            "title": "Hide training-course ads",
            "type": "boolean",
            "description": "Drop 'training job' ads (courses dressed as jobs) — filtered server-side AND client-side.",
            "default": false
          },
          "hideSurveyJobs": {
            "title": "Hide survey ads",
            "type": "boolean",
            "description": "Drop paid-survey ads — filtered server-side AND client-side.",
            "default": false
          },
          "hideNoSalaryJobs": {
            "title": "Hide jobs without a stated salary",
            "type": "boolean",
            "description": "Drop postings whose salary is hidden ('competitive', 'negotiable') — keeps only rows with real salary numbers.",
            "default": false
          },
          "fetchDetails": {
            "title": "Fetch full job details",
            "type": "boolean",
            "description": "Fetch each job's detail page: HTML description, normalized per-annum salary, recruiter reference & type, sector taxonomy, town/county/region/postcode, inferred remote/hybrid/onsite type. INCLUDED in the per-job price — turning it off just makes runs faster (the full plaintext description is on the listing either way).",
            "default": true
          },
          "maxItems": {
            "title": "Max jobs per run",
            "minimum": 0,
            "type": "integer",
            "description": "Hard cap on jobs scraped this run (cost/safety guard). Defaults to 50 for a fast first run — set 0 for an unlimited sweep of the whole result set (capped at 10,000/run).",
            "default": 50
          },
          "reedApiKey": {
            "title": "Reed API key (optional — live applications count)",
            "type": "string",
            "description": "The live 'applications' count is NOT in the public pages — only Reed's official API returns it. Paste your own free key (60 seconds at reed.co.uk/developers) and every record gets an 'applications' number. Leave empty to skip."
          },
          "monitorMode": {
            "title": "Monitor mode (saved-search watcher)",
            "type": "boolean",
            "description": "Recurring watcher: diff against the prior run's seen jobs (per search scope) and output/alert ONLY newly posted jobs. Pair with an Apify Schedule and 'Date posted' = Last 3 days.",
            "default": false
          },
          "alertOnNewJob": {
            "title": "Alert on new jobs",
            "type": "boolean",
            "description": "In monitor mode, deliver an alert for each newly posted job via the channels below.",
            "default": true
          },
          "webhookUrl": {
            "title": "Webhook URL",
            "type": "string",
            "description": "POST endpoint for new-job alert payloads (Make / Zapier / n8n / custom). One JSON body per alert."
          },
          "slackWebhookUrl": {
            "title": "Slack webhook URL",
            "type": "string",
            "description": "Slack incoming-webhook URL for formatted new-job cards."
          },
          "emailRecipients": {
            "title": "Email recipients",
            "type": "array",
            "description": "Email addresses for the new-job digest (sent via apify/send-mail).",
            "items": {
              "type": "string"
            }
          },
          "proxyConfiguration": {
            "title": "Proxy",
            "type": "object",
            "description": "Proxy settings. Datacenter rotation is enough for this site (server-rendered pages, no anti-bot).",
            "default": {
              "useApifyProxy": true
            }
          },
          "requestConcurrency": {
            "title": "Request concurrency",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "Max parallel requests for detail-page fetches. Keep modest to respect the site.",
            "default": 6
          },
          "diagnose": {
            "title": "Diagnostic mode (dev)",
            "type": "boolean",
            "description": "Dev only. Dumps the raw SERP + detail HTML to the key-value store (DEBUG_SERP_HTML / DEBUG_DETAIL_HTML) and logs the parsed first row + pagination check, then exits. Leave off for normal runs.",
            "default": false
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}