{
  "openapi": "3.0.1",
  "info": {
    "title": "JobServe Jobs Scraper",
    "description": "Cloud-ready scraper for public JobServe listings with bounded requests, Apify Proxy support, verified detail enrichment and normalized job, recruiter, salary, date and application data.",
    "version": "1.1",
    "x-build-id": "xRq3WwrJ2rDrEIZ8F"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/jobsapi~jobserve-jobs-search-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-jobsapi-jobserve-jobs-search-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/jobsapi~jobserve-jobs-search-scraper/runs": {
      "post": {
        "operationId": "runs-sync-jobsapi-jobserve-jobs-search-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/jobsapi~jobserve-jobs-search-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-jobsapi-jobserve-jobs-search-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": {
          "mode": {
            "title": "Run mode",
            "enum": [
              "search",
              "single",
              "multiple"
            ],
            "type": "string",
            "description": "Search public JobServe results or fetch one/multiple direct public detail pages.",
            "default": "search"
          },
          "jobUrls": {
            "title": "Direct job URLs",
            "minItems": 1,
            "maxItems": 100,
            "type": "array",
            "description": "Public JobServe detail URLs used by single or multiple mode.",
            "items": {
              "type": "object",
              "properties": {
                "url": {
                  "type": "string",
                  "title": "Job URL",
                  "description": "Public JobServe HTTPS detail URL."
                }
              },
              "required": [
                "url"
              ]
            }
          },
          "websiteCountry": {
            "title": "Website country",
            "type": "string",
            "description": "JobServe market to search, for example United Kingdom or United States.",
            "default": "United Kingdom"
          },
          "searchCountries": {
            "title": "Search countries",
            "type": "array",
            "description": "Optional country filters supported by the selected JobServe market.",
            "items": {
              "type": "string"
            }
          },
          "keywords": {
            "title": "Keywords",
            "type": "string",
            "description": "Job title, skill or phrase to search for.",
            "default": "Accountant"
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "Optional city, region or comma-separated locations."
          },
          "distance": {
            "title": "Distance",
            "type": "string",
            "description": "Optional radius label such as Within 50 miles."
          },
          "remoteWorking": {
            "title": "Remote working",
            "type": "boolean",
            "description": "Restrict results to remote-work listings when supported.",
            "default": false
          },
          "industries": {
            "title": "Industries",
            "type": "array",
            "description": "Optional JobServe industry filters.",
            "items": {
              "type": "string"
            }
          },
          "datePosted": {
            "title": "Date posted",
            "type": "string",
            "description": "Optional recency filter such as Within 3 days."
          },
          "jobType": {
            "title": "Job type",
            "type": "string",
            "description": "Engagement filter such as Permanent or Contract.",
            "default": "Any"
          },
          "jobTitle": {
            "title": "Exact job title",
            "type": "string",
            "description": "Optional exact title filter."
          },
          "salaryRate": {
            "title": "Salary or rate",
            "type": "array",
            "description": "Optional salary or day-rate filters.",
            "items": {
              "type": "string"
            }
          },
          "visaEligibility": {
            "title": "Visa eligibility",
            "type": "array",
            "description": "Optional visa eligibility filters.",
            "items": {
              "type": "string"
            }
          },
          "category": {
            "title": "Category",
            "type": "array",
            "description": "Optional listing categories.",
            "items": {
              "type": "string"
            }
          },
          "advertisedBy": {
            "title": "Advertised by",
            "type": "string",
            "description": "Optional advertiser filter."
          },
          "searchUrl": {
            "title": "Existing search URL",
            "type": "string",
            "description": "Optional public JobServe URL. When supplied, filter fields are not used to construct a URL."
          },
          "maxResults": {
            "title": "Maximum results",
            "minimum": 1,
            "maximum": 2000,
            "type": "integer",
            "description": "Maximum listings to return.",
            "default": 100
          },
          "timeoutSeconds": {
            "title": "Request timeout",
            "minimum": 5,
            "maximum": 120,
            "type": "integer",
            "description": "Maximum seconds for each public page request.",
            "default": 30
          },
          "includeDetails": {
            "title": "Fetch detail pages",
            "type": "boolean",
            "description": "Enrich search cards with their public JobServe detail pages.",
            "default": true
          },
          "concurrency": {
            "title": "Detail concurrency",
            "minimum": 1,
            "maximum": 8,
            "type": "integer",
            "description": "Maximum concurrent public detail requests.",
            "default": 4
          },
          "maxRetries": {
            "title": "Retries",
            "minimum": 0,
            "maximum": 4,
            "type": "integer",
            "description": "Retries for transient public HTTP failures.",
            "default": 2
          },
          "requestDelayMs": {
            "title": "Request delay",
            "minimum": 0,
            "maximum": 30000,
            "type": "integer",
            "description": "Polite delay before each public request.",
            "default": 50
          },
          "maxRequests": {
            "title": "Maximum network requests",
            "minimum": 2,
            "maximum": 500,
            "type": "integer",
            "description": "Hard upper bound on all search and detail network requests, including retries.",
            "default": 120
          },
          "maxResponseBytes": {
            "title": "Maximum response size",
            "minimum": 100000,
            "maximum": 20971520,
            "type": "integer",
            "description": "Reject public pages larger than this many bytes.",
            "default": 10485760
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Apify Proxy configuration applied to public JobServe requests. The default uses Apify Proxy when available.",
            "default": {
              "useApifyProxy": true
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}