{
  "openapi": "3.0.1",
  "info": {
    "title": "Seek.com.au Jobs Scraper",
    "description": "Scrape Seek.com.au job listings with titles, companies, locations, salaries, work arrangements, and full descriptions. HTTP-only, no login required.",
    "version": "1.0",
    "x-build-id": "obvCbEwdlcCIZHqGR"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/crawlerbros~seek-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-crawlerbros-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/crawlerbros~seek-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-crawlerbros-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/crawlerbros~seek-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-crawlerbros-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",
        "required": [
          "searchUrls"
        ],
        "properties": {
          "searchUrls": {
            "title": "Search URLs",
            "type": "array",
            "description": "Seek search URLs. Examples: https://www.seek.com.au/python-jobs, https://www.seek.com.au/jobs?keywords=python&where=Sydney, https://www.seek.com.au/job/91572959 (direct job URL also supported).",
            "default": [
              "https://www.seek.com.au/python-jobs"
            ],
            "items": {
              "type": "string"
            }
          },
          "searchTerm": {
            "title": "Search Term (Keywords)",
            "type": "string",
            "description": "Optional keyword filter. Used to build a search URL when no searchUrls are supplied."
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "Optional location filter, e.g. \"Sydney NSW\" or \"Melbourne VIC\". Combined with searchTerm to build a /jobs?keywords=&where= URL."
          },
          "state": {
            "title": "State",
            "enum": [
              "",
              "NSW",
              "VIC",
              "QLD",
              "WA",
              "SA",
              "TAS",
              "ACT",
              "NT"
            ],
            "type": "string",
            "description": "Optional Australian state filter (e.g. NSW, VIC, QLD). Appended to the location when constructing the search URL.",
            "default": ""
          },
          "postCode": {
            "title": "Post Code",
            "type": "string",
            "description": "Optional Australian 4-digit postcode. Appended to the location when constructing the search URL."
          },
          "radius": {
            "title": "Radius (km)",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Distance in kilometres around the location. Passed as Seek's distance parameter when building a search URL."
          },
          "salaryType": {
            "title": "Salary Type",
            "enum": [
              "any",
              "AnnualPackage",
              "HourlyRate",
              "MonthlyPackage",
              "YearlyPackage"
            ],
            "type": "string",
            "description": "Seek salarytype parameter. Controls how the salary range is interpreted on Seek's side.",
            "default": "any"
          },
          "workTypes": {
            "title": "Work Types",
            "uniqueItems": true,
            "type": "array",
            "description": "Client-side filter. Only emit jobs whose workType matches one of the selected values.",
            "items": {
              "type": "string",
              "enum": [
                "Full Time",
                "Part Time",
                "Contract/Temp",
                "Casual/Vacation"
              ]
            }
          },
          "workArrangements": {
            "title": "Work Arrangements",
            "uniqueItems": true,
            "type": "array",
            "description": "Client-side filter. Only emit jobs whose work arrangement matches one of the selected values.",
            "items": {
              "type": "string",
              "enum": [
                "On-site",
                "Hybrid",
                "Remote"
              ]
            }
          },
          "dateRange": {
            "title": "Date Posted",
            "enum": [
              "any",
              "1",
              "3",
              "7",
              "14",
              "30"
            ],
            "type": "string",
            "description": "Client-side filter on postedAt. \"any\" keeps all; otherwise only emit jobs posted within the last N days.",
            "default": "any"
          },
          "salaryMin": {
            "title": "Salary Min (AUD)",
            "minimum": 0,
            "type": "integer",
            "description": "Client-side filter. Only emit jobs whose parsed salary max is at least this value."
          },
          "salaryMax": {
            "title": "Salary Max (AUD)",
            "minimum": 0,
            "type": "integer",
            "description": "Client-side filter. Only emit jobs whose parsed salary min is at most this value."
          },
          "subclassifications": {
            "title": "Subclassifications",
            "type": "array",
            "description": "Client-side filter. Only emit jobs whose subClassification name matches one of these values (case-insensitive).",
            "items": {
              "type": "string"
            }
          },
          "includeOneInTitle": {
            "title": "Title Must Include One Of",
            "type": "array",
            "description": "Client-side filter. Only emit jobs whose title contains at least one of the given substrings (case-insensitive).",
            "items": {
              "type": "string"
            }
          },
          "requireEmail": {
            "title": "Require Email in Description",
            "type": "boolean",
            "description": "Client-side filter. Only emit jobs whose description contains at least one email address.",
            "default": false
          },
          "requirePhone": {
            "title": "Require Phone in Description",
            "type": "boolean",
            "description": "Client-side filter. Only emit jobs whose description contains at least one phone number.",
            "default": false
          },
          "requireEmailPhone": {
            "title": "Require Both Email and Phone",
            "type": "boolean",
            "description": "Client-side filter. Only emit jobs whose description contains BOTH an email address AND a phone number.",
            "default": false
          },
          "sortBy": {
            "title": "Sort By",
            "enum": [
              "KeywordRelevance",
              "ListedDate"
            ],
            "type": "string",
            "description": "Seek sort order applied to the search URL when constructed from keywords/location.",
            "default": "KeywordRelevance"
          },
          "maxItems": {
            "title": "Max Items",
            "minimum": 1,
            "maximum": 300,
            "type": "integer",
            "description": "Maximum job listings to return.",
            "default": 3
          },
          "scrapeJobDetails": {
            "title": "Scrape Job Details",
            "type": "boolean",
            "description": "Fetch each job's detail page for the full description + extra metadata. Off = listing-card fields only.",
            "default": true
          },
          "proxyConfiguration": {
            "title": "Proxy Configuration",
            "type": "object",
            "description": "Apify proxy. Seek 403s bare datacenter IPs on Apify, so the default enables Apify's free datacenter proxy pool.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}