{
  "openapi": "3.0.1",
  "info": {
    "title": "SEEK.com.au Scraper",
    "description": "Scrape seek.com.au for structured Australian job data: titles, companies, salaries, descriptions & classifications. 150k+ listings. Deduplication & daysOld filtering included.",
    "version": "0.0",
    "x-build-id": "xZWlj94Zyec5zaAez"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/unfenced-group~seek-com-au-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-unfenced-group-seek-com-au-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/unfenced-group~seek-com-au-scraper/runs": {
      "post": {
        "operationId": "runs-sync-unfenced-group-seek-com-au-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/unfenced-group~seek-com-au-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-unfenced-group-seek-com-au-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": {
          "searchQuery": {
            "title": "Search query (keywords)",
            "type": "string",
            "description": "Keywords to search for, e.g. 'software engineer' or 'nurse'. Leave empty to browse all jobs."
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "Location label as used on SEEK, e.g. 'Sydney NSW', 'Melbourne VIC', 'All Australia'."
          },
          "workType": {
            "title": "Work type",
            "enum": [
              "Full time",
              "Part time",
              "Contract/Temp",
              "Casual/Vacation"
            ],
            "type": "string",
            "description": "Filter by employment type."
          },
          "classificationId": {
            "title": "Classification ID",
            "type": "integer",
            "description": "SEEK category ID, e.g. 1209 for ICT, 6317 for Sales. Leave empty for all categories."
          },
          "subClassificationId": {
            "title": "Sub-classification ID",
            "type": "integer",
            "description": "SEEK sub-category ID for drilling down within a classification, e.g. Software Engineering within ICT. Requires classificationId to be set."
          },
          "salaryMin": {
            "title": "Minimum salary (AUD)",
            "minimum": 0,
            "type": "integer",
            "description": "Filter jobs with salary at or above this value. Units depend on listing (annual or hourly). Leave empty for no minimum."
          },
          "salaryMax": {
            "title": "Maximum salary (AUD)",
            "minimum": 0,
            "type": "integer",
            "description": "Filter jobs with salary at or below this value. Units depend on listing (annual or hourly). Leave empty for no maximum."
          },
          "daysOld": {
            "title": "Listed within (days)",
            "minimum": 0,
            "type": "integer",
            "description": "Only return jobs listed within this many days. E.g. 7 = last week. Leave empty for all time.",
            "default": 0
          },
          "sortMode": {
            "title": "Sort order",
            "enum": [
              "ListedDate",
              "KeywordRelevance"
            ],
            "type": "string",
            "description": "Sort results by date listed or keyword relevance.",
            "default": "ListedDate"
          },
          "fetchDetails": {
            "title": "Fetch full job description",
            "type": "boolean",
            "description": "If enabled, fetches the full HTML job description from SEEK's GraphQL API. Slower but provides complete job details. Adds ~4× runtime.",
            "default": false
          },
          "startUrls": {
            "title": "Start URLs",
            "type": "array",
            "description": "Optional list of direct SEEK job URLs (e.g. https://www.seek.com.au/job/12345678). Bypasses search — fetches details for these specific listings only. Requires fetchDetails to be set if description is needed.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "skipReposts": {
            "title": "Skip already-seen jobs",
            "type": "boolean",
            "description": "Skip jobs that were returned in a previous run (uses a 90-day deduplication store). Useful for daily incremental feeds.",
            "default": false
          },
          "country": {
            "title": "Country",
            "enum": [
              "AU",
              "NZ"
            ],
            "type": "string",
            "description": "Which SEEK site to scrape. AU = seek.com.au (default), NZ = seek.co.nz.",
            "default": "AU"
          },
          "includeKeywords": {
            "title": "Include keywords (post-filter)",
            "type": "array",
            "description": "Only keep jobs whose title, company or description contains at least one of these words (case-insensitive).",
            "items": {
              "type": "string"
            }
          },
          "excludeKeywords": {
            "title": "Exclude keywords (post-filter)",
            "type": "array",
            "description": "Remove jobs whose title, company or description contains any of these words (case-insensitive).",
            "items": {
              "type": "string"
            }
          },
          "fromDate": {
            "title": "From date (post-filter)",
            "type": "string",
            "description": "Only keep jobs listed on or after this date. ISO format: 2026-06-01."
          },
          "toDate": {
            "title": "To date (post-filter)",
            "type": "string",
            "description": "Only keep jobs listed on or before this date. ISO format: 2026-06-08."
          },
          "fetchCompanyProfile": {
            "title": "Fetch company profile",
            "type": "boolean",
            "description": "Fetch each employer's SEEK company page for rating, review count, recommended %, industry, size and website. One extra request per unique company.",
            "default": false
          },
          "maxItems": {
            "title": "Max results",
            "minimum": 1,
            "type": "integer",
            "description": "Maximum number of job listings to return. Default 100, max 200,000.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}