{
  "openapi": "3.0.1",
  "info": {
    "title": "SEEK Jobs Scraper — AU/NZ Leads & Intelligence",
    "description": "Scrape SEEK Australia and New Zealand jobs with salaries, descriptions, skills, visa signals, application questions, and company/recruiter profiles. Extract public emails and phones where published. Track new, updated, reposted, reappeared, and expired roles.",
    "version": "0.2",
    "x-build-id": "MY03ksyohgRpaqtbx"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/trakk~seek-job-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-trakk-seek-job-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/trakk~seek-job-scraper/runs": {
      "post": {
        "operationId": "runs-sync-trakk-seek-job-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/trakk~seek-job-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-trakk-seek-job-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": {
          "scrapeType": {
            "title": "What do you want to scrape?",
            "enum": [
              "search",
              "jobDetails"
            ],
            "type": "string",
            "description": "Search jobs collects listings by keyword or search URL. Job details collects complete records from direct job URLs.",
            "default": "search"
          },
          "country": {
            "title": "SEEK market",
            "enum": [
              "AU",
              "NZ"
            ],
            "type": "string",
            "description": "Select seek.com.au or seek.co.nz for query searches. Direct URLs keep their own market.",
            "default": "AU"
          },
          "searchQueries": {
            "title": "Search queries",
            "type": "array",
            "description": "One literal job-search phrase per entry, for example software engineer or registered nurse.",
            "default": [
              "software engineer"
            ],
            "items": {
              "type": "string"
            }
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "SEEK location label used with every query, for example All Sydney NSW, Melbourne VIC, Auckland, or All Australia.",
            "default": "All Australia"
          },
          "sortMode": {
            "title": "Sort order",
            "enum": [
              "KeywordRelevance",
              "ListedDate"
            ],
            "type": "string",
            "description": "Sort query results by SEEK relevance or listing date.",
            "default": "KeywordRelevance"
          },
          "dateRange": {
            "title": "Listed within days",
            "minimum": 0,
            "maximum": 365,
            "type": "integer",
            "description": "Only jobs listed within this many days. Use 0 for any time.",
            "default": 0
          },
          "workType": {
            "title": "Work type",
            "enum": [
              "",
              "242",
              "243",
              "244",
              "245"
            ],
            "type": "string",
            "description": "Filter query results by employment type.",
            "default": ""
          },
          "workArrangement": {
            "title": "Work arrangement",
            "enum": [
              "",
              "1",
              "2",
              "3"
            ],
            "type": "string",
            "description": "Filter query results by on-site, hybrid, or remote arrangement.",
            "default": ""
          },
          "classificationId": {
            "title": "Classification ID",
            "type": "string",
            "description": "Optional numeric SEEK category ID, for example 6281 for Information & Communication Technology.",
            "default": ""
          },
          "subClassificationId": {
            "title": "Sub-classification ID",
            "type": "string",
            "description": "Optional numeric SEEK sub-category ID. Requires a parent Classification ID.",
            "default": ""
          },
          "salaryMin": {
            "title": "Minimum salary",
            "minimum": 0,
            "maximum": 10000000,
            "type": "integer",
            "description": "Optional minimum salary in AUD or NZD."
          },
          "salaryMax": {
            "title": "Maximum salary",
            "minimum": 0,
            "maximum": 10000000,
            "type": "integer",
            "description": "Optional maximum salary in AUD or NZD."
          },
          "salaryType": {
            "title": "Salary period",
            "enum": [
              "annual",
              "hourly"
            ],
            "type": "string",
            "description": "Interpret the salary range as annual or hourly values.",
            "default": "annual"
          },
          "radiusKm": {
            "title": "Location radius",
            "minimum": 0,
            "maximum": 500,
            "type": "integer",
            "description": "Search radius in kilometres around a specific location.",
            "default": 50
          },
          "searchUrls": {
            "title": "SEEK search URLs",
            "type": "array",
            "description": "Optional public seek.com.au or seek.co.nz search-result URLs. URL filters and sort options are preserved while pages are collected.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "includeJobDetails": {
            "title": "Fetch full job details",
            "type": "boolean",
            "description": "Adds full HTML/text, expiry, application questions, contacts, apply URL, company/recruiter profile data, skills, visa evidence, normalized salary, and detailed location fields. One extra request per selected job.",
            "default": false
          },
          "jobUrls": {
            "title": "Direct SEEK job URLs",
            "type": "array",
            "description": "Used in Job details mode. Paste URLs such as https://www.seek.com.au/job/94231469.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "maxItems": {
            "title": "Maximum jobs per search",
            "minimum": 1,
            "maximum": 5000,
            "type": "integer",
            "description": "Maximum unique successfully saved jobs for each search query or search URL. Filtered, duplicate, and failed records do not consume this allowance.",
            "default": 20
          },
          "maxPagesPerSearch": {
            "title": "Maximum pages per search",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Safety cap per search. Reaching this cap is reported as max_pages rather than source exhaustion.",
            "default": 5
          },
          "incrementalMode": {
            "title": "Track new and changed jobs",
            "type": "boolean",
            "description": "Persist a search snapshot and label rows NEW, UPDATED, REAPPEARED, REPOST, or UNCHANGED across scheduled runs.",
            "default": false
          },
          "stateKey": {
            "title": "State key",
            "type": "string",
            "description": "Optional stable name for this monitored search. Leave blank to derive it from the inputs automatically.",
            "default": ""
          },
          "emitUnchanged": {
            "title": "Emit unchanged jobs",
            "type": "boolean",
            "description": "When incremental mode is enabled, also save jobs whose tracked content did not change.",
            "default": false
          },
          "emitExpired": {
            "title": "Emit expired jobs",
            "type": "boolean",
            "description": "Emit EXPIRED rows only when every monitored source was exhaustively collected in the run.",
            "default": false
          },
          "skipReposts": {
            "title": "Skip detected reposts",
            "type": "boolean",
            "description": "Do not emit a new job ID when its title, company, and location match an inactive prior listing.",
            "default": false
          },
          "maxConcurrency": {
            "title": "Maximum detail concurrency",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "Number of job detail pages processed concurrently.",
            "default": 8
          },
          "maxRetries": {
            "title": "Maximum request attempts",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "Maximum attempts for retryable source errors.",
            "default": 4
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Connection settings used to retrieve public SEEK pages.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ]
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}