{
  "openapi": "3.0.1",
  "info": {
    "title": "Indeed Jobs Scraper",
    "description": "Scrape Indeed job listings across 20+ country domains: job title, company, structured salary (min/max/period/currency), city, state, posted date, snippet, apply URL, and the full job description. Pay per job. No login required.",
    "version": "0.1",
    "x-build-id": "96kLaeMUpjXc6dQeB"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/schnellscrapers~indeed-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-schnellscrapers-indeed-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/schnellscrapers~indeed-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-schnellscrapers-indeed-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/schnellscrapers~indeed-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-schnellscrapers-indeed-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": {
          "searches": {
            "title": "Searches",
            "type": "array",
            "description": "List of Indeed searches to run. Each entry accepts: `query`, `location`, `country` (us, uk, de, ca, au, fr, in, br, mx, jp and more), `remoteOnly` (bool), `postedWithinDays` (number), `jobType` (fulltime/parttime/contract/temporary/internship), `radius` (miles in US, km elsewhere), `sort` (`date` or `relevance`). Leave a field blank to broaden the search."
          },
          "startUrls": {
            "title": "Start URLs",
            "type": "array",
            "description": "Optional: paste fully-formed Indeed search URLs (e.g. `https://www.indeed.com/jobs?q=...&l=...`). Used in addition to `searches`.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "position": {
            "title": "Search keyword",
            "type": "string",
            "description": "Convenience shortcut: when `searches` and `startUrls` are empty, this becomes the single search keyword. Equivalent to `query`."
          },
          "query": {
            "title": "Query",
            "type": "string",
            "description": "Alias of `position`."
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "City, ZIP, locality, or `Remote`. Pairs with `position`/`query`."
          },
          "country": {
            "title": "Country",
            "type": "string",
            "description": "Two-letter country code (us, uk, de, ca, au, fr, in, br, mx, jp and more). Selects the Indeed country domain to query.",
            "default": "us"
          },
          "jobType": {
            "title": "Job type filter",
            "enum": [
              "fulltime",
              "parttime",
              "contract",
              "temporary",
              "internship",
              "permanent"
            ],
            "type": "string",
            "description": "Restrict the single-search shortcut to one job type. One of fulltime / parttime / contract / temporary / internship / permanent."
          },
          "radius": {
            "title": "Search radius",
            "minimum": 0,
            "type": "integer",
            "description": "Distance from `location` in miles (US) or km (most other countries)."
          },
          "sort": {
            "title": "Sort order",
            "enum": [
              "date",
              "relevance"
            ],
            "type": "string",
            "description": "Order results by `date` (newest first) or `relevance` (Indeed default).",
            "default": "relevance"
          },
          "fromDays": {
            "title": "Posted within last N days",
            "minimum": 0,
            "type": "integer",
            "description": "Filter to listings posted within the last N days (e.g. `7` for the last week)."
          },
          "remoteOnly": {
            "title": "Remote only",
            "type": "boolean",
            "description": "Restrict the single-search shortcut to remote listings.",
            "default": false
          },
          "maxItems": {
            "title": "Maximum records",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "Hard cap on emitted job records across all searches. Indeed returns ~15 jobs per page; set generously and let the per-page limit decide when to stop.",
            "default": 100
          },
          "maxItemsPerSearch": {
            "title": "Maximum records per search",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "When only one search is provided, this is treated as `maxItems`. Provided as an alias for migration from other Indeed scrapers."
          },
          "maxPagesPerSearch": {
            "title": "Maximum pages per search",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Cap on pages fetched per search. Indeed returns ~15 jobs per page, so `5` pages ≈ 75 jobs.",
            "default": 5
          },
          "includeFullDescription": {
            "title": "Include full job description",
            "type": "boolean",
            "description": "Optional enrichment: when on, the actor visits each job's detail page to populate `description` and `descriptionHTML` with the full posting body (~5,000–10,000 chars per job). Off by default — most lead-gen and ATS workflows only need the search-card `snippet` (~200–300 chars) and run roughly 5× faster without the detail-page fetch.",
            "default": false
          },
          "parseCompanyDetails": {
            "title": "Backfill company Indeed URL",
            "type": "boolean",
            "description": "When on, backfills `companyIndeedUrl` from each job's detail page for listings whose search payload didn't include a company page link (raises coverage from ~75% to ~95%). Requires the detail page to be visited; if `includeFullDescription` is off, it is auto-enabled for this run.",
            "default": false
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "**Residential proxy is required.** Indeed blocks plain HTTPS and datacenter IPs within a few requests. The default group is `RESIDENTIAL` on Apify Proxy.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ]
            }
          },
          "dryRun": {
            "title": "Dry run",
            "type": "boolean",
            "description": "When on, the actor parses pages and logs counts but does not write to the dataset. Useful for verifying input shape and selectors before paying for a full run.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}