{
  "openapi": "3.0.1",
  "info": {
    "title": "Reed.co.uk Jobs Scraper",
    "description": "[💰 $0.95 / 1K] Extract UK job listings from Reed.co.uk by keyword, location, salary, contract type, and posted-by source. Get titles, companies, salaries, descriptions, employment types, posted dates, and direct apply URLs — every row a flat job posting.",
    "version": "1.0",
    "x-build-id": "uztsRDrkTKVmQww2A"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/solidcode~reed-co-uk-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-solidcode-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/solidcode~reed-co-uk-scraper/runs": {
      "post": {
        "operationId": "runs-sync-solidcode-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/solidcode~reed-co-uk-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-solidcode-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": {
          "keywords": {
            "title": "Keywords",
            "type": "string",
            "description": "Job title or skill to search, such as 'python developer' or 'marketing manager'. Leave empty to scrape Reed's general listing."
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "UK city, region, or postcode (e.g., 'london', 'manchester', 'se1', 'remote'). Reed accepts full or partial postcodes and town names."
          },
          "distance": {
            "title": "Distance from Location (miles)",
            "enum": [
              "0",
              "5",
              "10",
              "15",
              "20",
              "30",
              "40"
            ],
            "type": "string",
            "description": "Search radius from the location. Ignored when location is empty.",
            "default": "10"
          },
          "urls": {
            "title": "Direct Reed URLs",
            "type": "array",
            "description": "Optional. Paste Reed.co.uk search URLs (e.g., https://www.reed.co.uk/jobs/python-jobs-in-london) or individual job URLs (e.g., https://www.reed.co.uk/jobs/job/55123456). Filters baked into pasted URLs are honored as-is — useful when you have already dialed in a search on the Reed website.",
            "items": {
              "type": "string"
            }
          },
          "permanent": {
            "title": "Permanent",
            "type": "boolean",
            "description": "Include permanent contract roles.",
            "default": true
          },
          "contract": {
            "title": "Contract",
            "type": "boolean",
            "description": "Include fixed-term contract roles.",
            "default": true
          },
          "temp": {
            "title": "Temporary",
            "type": "boolean",
            "description": "Include temporary roles.",
            "default": true
          },
          "fullTime": {
            "title": "Full-time",
            "type": "boolean",
            "description": "Include full-time roles.",
            "default": true
          },
          "partTime": {
            "title": "Part-time",
            "type": "boolean",
            "description": "Include part-time roles.",
            "default": false
          },
          "minSalary": {
            "title": "Minimum Salary (GBP, annual)",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum annual salary in pounds sterling. Leave empty for no lower bound. Note: many Reed listings have unspecified salary text (e.g., 'Competitive') and may be excluded by Reed's own server-side filter when this is set."
          },
          "maxSalary": {
            "title": "Maximum Salary (GBP, annual)",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum annual salary in pounds sterling. Leave empty for no upper bound."
          },
          "postedBy": {
            "title": "Posted By",
            "enum": [
              "any",
              "agency",
              "directEmployer"
            ],
            "type": "string",
            "description": "Filter by who listed the role. Reed marks every posting as either an agency listing or a direct-employer listing.",
            "default": "any"
          },
          "datePosted": {
            "title": "Date Posted",
            "enum": [
              "any",
              "today",
              "lastThreeDays",
              "lastWeek",
              "lastTwoWeeks"
            ],
            "type": "string",
            "description": "Only show roles posted within this window.",
            "default": "any"
          },
          "fetchDescription": {
            "title": "Fetch Full Job Descriptions",
            "type": "boolean",
            "description": "Fetch each role's full description from its detail page. Leave on for the most complete data. Turn off for faster, cheaper scans — only the short snippet, salary, and headline fields will be populated.",
            "default": true
          },
          "maxResults": {
            "title": "Maximum Results",
            "minimum": 0,
            "maximum": 5000,
            "type": "integer",
            "description": "Cap on total job rows across all keywords and URLs. Default 100. Hard upper bound is 5,000 to prevent runaway pagination — set to 0 to use that internal cap directly. The actor stops requesting new pages once this number is reached but keeps the full final page even if it slightly overshoots (up to ~100 results per page).",
            "default": 100
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}