{
  "openapi": "3.0.1",
  "info": {
    "title": "SEEK Jobs Scraper — Australia & NZ Job Data",
    "description": "SEEK job scraper for Australia & New Zealand. Extract job listings by keyword, location or search URL: title, company, salary, location, work type, classification, posting date and full description — clean JSON/CSV. No code, no SEEK API key needed.",
    "version": "1.0",
    "x-build-id": "ss2RzfyjOE8fNInFK"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/sian.agency~seek-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-sian.agency-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/sian.agency~seek-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-sian.agency-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/sian.agency~seek-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-sian.agency-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": {
          "scrapeMode": {
            "title": "🧭 Scrape Mode",
            "enum": [
              "overview",
              "detail"
            ],
            "type": "string",
            "description": "**Overview** — fast, cheap bulk listings from the search API (title, company, salary label, location, work type, classification, posting date, teaser, bullet points, logo).\n\n**Detail** — richer per-job records (full HTML description, salary + currency, company profile, phone number when published, share link). Detail can read job IDs directly, or auto-discover them from a search.",
            "default": "overview"
          },
          "searchMode": {
            "title": "🔀 Search Mode",
            "enum": [
              "bySearch",
              "bySearchUrl",
              "byJobId"
            ],
            "type": "string",
            "description": "How the actor finds jobs.\n\n- **By Search** — provide `keywords` and/or a `where` location.\n- **By Search URL** — paste one or more seek.com.au search URLs (their filters are preserved).\n- **By Job ID** — provide job IDs or job URLs directly (Detail mode only).",
            "default": "bySearch"
          },
          "keywords": {
            "title": "🔍 Keywords",
            "type": "string",
            "description": "**KEYWORD SEARCH:** what role / skill to search for, e.g. `developer`, `registered nurse`, `data engineer`.\n\n💡 **TIP:** combine with a `where` location to narrow results. Used by the **By Search** mode.",
            "default": "developer"
          },
          "where": {
            "title": "📍 Where (Location)",
            "type": "string",
            "description": "**LOCATION:** free-text locality SEEK understands, e.g. `Sydney NSW`, `Melbourne VIC`, `Brisbane QLD`, or `All Australia` for nationwide.\n\nUsed by the **By Search** mode.",
            "default": "Sydney NSW"
          },
          "country": {
            "title": "🌏 Country",
            "enum": [
              "AU",
              "NZ"
            ],
            "type": "string",
            "description": "**MARKET:** `AU` for seek.com.au (Australia) or `NZ` for seek.co.nz (New Zealand).",
            "default": "AU"
          },
          "searchUrls": {
            "title": "🔗 Search URLs (Bulk)",
            "uniqueItems": true,
            "type": "array",
            "description": "**SEARCH-URL MODE:** paste one or more seek.com.au search URLs — the actor preserves their keywords, location and filters.\n\n📋 Click **Bulk edit** to paste URLs one per line.\n\nUsed by the **By Search URL** mode.",
            "items": {
              "type": "string"
            }
          },
          "jobIds": {
            "title": "🆔 Job IDs or URLs (Bulk, Detail only)",
            "uniqueItems": true,
            "type": "array",
            "description": "**JOB-ID MODE (Detail only):** the SEEK job IDs (e.g. `92875670`) or full job URLs to fetch in detail.\n\n📋 Click **Bulk edit** to paste one per line.",
            "items": {
              "type": "string"
            }
          },
          "maxResults": {
            "title": "🔢 Max Results",
            "minimum": 1,
            "type": "integer",
            "description": "Maximum jobs to extract per run.\n\n**TIER LIMITS:** FREE users up to 25 per run · PAID users unlimited. Lower it to keep runs cheap and fast.",
            "default": 100
          },
          "worktype": {
            "title": "💼 Work Type",
            "type": "string",
            "description": "SEEK work-type filter ID, e.g. `242` (Full time). Comma-separate for multiple. Optional."
          },
          "salaryrange": {
            "title": "💰 Salary Range",
            "type": "string",
            "description": "Salary band, e.g. `100000-150000`. Optional."
          },
          "salarytype": {
            "title": "💵 Salary Type",
            "type": "string",
            "description": "`annual` or `hourly`. Optional."
          },
          "classification": {
            "title": "🗂️ Classification ID",
            "type": "string",
            "description": "SEEK industry-classification ID, e.g. `6281` (Information & Communication Technology). Optional."
          },
          "workarrangement": {
            "title": "🏠 Work Arrangement",
            "type": "string",
            "description": "`1` On-site · `2` Remote · `3` Hybrid. Comma-separate for multiple. Optional."
          },
          "sortmode": {
            "title": "↕️ Sort Mode",
            "type": "string",
            "description": "`ListedDate` (newest first) or `KeywordRelevance`. Optional."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}