{
  "openapi": "3.0.1",
  "info": {
    "title": "Seek Jobs Scraper — Most Comprehensive (AU & NZ)",
    "description": "From $0.20 per 1,000 jobs — scrape Seek AU & NZ by keyword, location, industry, work type, salary & date posted: company, parsed salary, remote flag, optional full description + contact email. New-job monitor with Slack/email/webhook alerts. No login or API key.",
    "version": "0.1",
    "x-build-id": "aJ4J1u83BGLvsr9Tb"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/scrapersdelight~seek-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-scrapersdelight-seek-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~seek-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-scrapersdelight-seek-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~seek-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-scrapersdelight-seek-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": "Search keywords, exactly like the Seek search box (e.g. 'engineer', 'registered nurse', 'data analyst'). Leave empty to sweep ALL jobs (combine with location/classification filters)."
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "Free-text location, exactly like Seek's 'Where' box — e.g. 'Sydney', 'Melbourne VIC', 'All Auckland', 'Christchurch Canterbury'. Leave empty for the whole country."
          },
          "country": {
            "title": "Country",
            "enum": [
              "AU",
              "NZ",
              "both"
            ],
            "type": "string",
            "description": "Which Seek site to search: Australia (seek.com.au), New Zealand (seek.co.nz), or both.",
            "default": "AU"
          },
          "classification": {
            "title": "Classification IDs",
            "type": "string",
            "description": "Seek classification (industry) ids, comma-separated — e.g. '1209' = Engineering, '6281' = ICT, '1223' = Healthcare & Medical. Find ids in the seek.com.au URL after picking a classification, or in this actor's README."
          },
          "subclassification": {
            "title": "Sub-classification IDs",
            "type": "string",
            "description": "Seek sub-classification ids, comma-separated (e.g. '6035' = Civil/Structural Engineering). Narrower than classification."
          },
          "workType": {
            "title": "Work type IDs",
            "type": "string",
            "description": "Comma-separated work-type ids: 242 = Full time, 243 = Part time, 244 = Contract/Temp, 245 = Casual/Vacation. Empty = all."
          },
          "salaryMin": {
            "title": "Min salary",
            "minimum": 0,
            "type": "integer",
            "description": "Lower bound of the advertised salary band (in AUD/NZD, per the Salary type below). Leave empty for no floor."
          },
          "salaryMax": {
            "title": "Max salary",
            "minimum": 0,
            "type": "integer",
            "description": "Upper bound of the advertised salary band. Leave empty for no cap."
          },
          "salaryType": {
            "title": "Salary type",
            "enum": [
              "annual",
              "hourly"
            ],
            "type": "string",
            "description": "Whether the salary range above is annual or hourly.",
            "default": "annual"
          },
          "dateRange": {
            "title": "Posted within (days)",
            "minimum": 0,
            "maximum": 31,
            "type": "integer",
            "description": "Only jobs posted in the last N days (server-side, like Seek's 'Listed any time' menu). 0 = any time. Great for monitors: 1 or 3.",
            "default": 0
          },
          "sortMode": {
            "title": "Sort by",
            "enum": [
              "ListedDate",
              "KeywordRelevance"
            ],
            "type": "string",
            "description": "Result order. 'Newest first' (ListedDate) is deterministic and best for monitors; 'Relevance' mirrors the Seek default for keyword searches.",
            "default": "ListedDate"
          },
          "fetchDescriptions": {
            "title": "Fetch full descriptions",
            "type": "boolean",
            "description": "Enrich every job with the full HTML job description (+ plaintext), exact salary label, advertiser verification + registration date, expiry date, and the contact email/phone when the ad includes one. One extra request per job.",
            "default": false
          },
          "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 to take everything the query can reach (Seek serves ~500-550 results deep per query; slice by classification/location/date to get more).",
            "default": 50
          },
          "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, 'Newest first' sort, and dateRange 1-3.",
            "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 — Seek's job-search API is public JSON with no anti-bot.",
            "default": {
              "useApifyProxy": true
            }
          },
          "requestConcurrency": {
            "title": "Request concurrency",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "Max parallel requests for description fetches. Keep modest to be polite.",
            "default": 5
          },
          "diagnose": {
            "title": "Diagnostic mode (dev)",
            "type": "boolean",
            "description": "Dev only. Dumps the raw search + detail JSON to the key-value store (DEBUG_SEARCH_JSON / DEBUG_DETAIL_JSON) 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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}