{
  "openapi": "3.0.1",
  "info": {
    "title": "Indeed Jobs Scraper — Detailed",
    "description": "Detailed Indeed job scraping: full descriptions, pre-parsed salaries, benefits, shifts, company ratings, normalized titles and resolved ATS apply URLs across 63 country domains. Fails loudly instead of returning an empty dataset.",
    "version": "2.0",
    "x-build-id": "OP0MlLHYdayAOjjD3"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/datasiphon~indeed-detailed-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-datasiphon-indeed-detailed-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/datasiphon~indeed-detailed-scraper/runs": {
      "post": {
        "operationId": "runs-sync-datasiphon-indeed-detailed-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/datasiphon~indeed-detailed-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-datasiphon-indeed-detailed-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": {
          "queries": {
            "title": "Search queries",
            "type": "array",
            "description": "Job searches to run. Supports Indeed's operators: \"data engineer\" (exact phrase), title:(\"data engineer\") (title only), company:Google (one employer), nurse -travel (exclude). Combine with and/or/not.",
            "items": {
              "type": "string"
            }
          },
          "locations": {
            "title": "Locations",
            "type": "array",
            "description": "City, state, ZIP or region. Each location is searched against every query. Leave empty to search the whole country.",
            "items": {
              "type": "string"
            }
          },
          "country": {
            "title": "Country",
            "enum": [
              "US",
              "AE",
              "AR",
              "AT",
              "AU",
              "BE",
              "BH",
              "BR",
              "CA",
              "CH",
              "CL",
              "CN",
              "CO",
              "CR",
              "CZ",
              "DE",
              "DK",
              "EC",
              "EG",
              "ES",
              "FI",
              "FR",
              "GB",
              "GR",
              "HK",
              "HU",
              "ID",
              "IE",
              "IL",
              "IN",
              "IT",
              "JP",
              "KR",
              "KW",
              "LU",
              "MA",
              "MX",
              "MY",
              "NG",
              "NL",
              "NO",
              "NZ",
              "OM",
              "PA",
              "PE",
              "PH",
              "PK",
              "PL",
              "PT",
              "QA",
              "RO",
              "RU",
              "SA",
              "SE",
              "SG",
              "TH",
              "TR",
              "TW",
              "UA",
              "UY",
              "VE",
              "VN",
              "ZA"
            ],
            "type": "string",
            "description": "Which Indeed domain to search. 63 supported.",
            "default": "US"
          },
          "engine": {
            "title": "Engine",
            "enum": [
              "auto",
              "graphql",
              "html"
            ],
            "type": "string",
            "description": "GraphQL uses Indeed's mobile API: one request returns up to 100 fully-detailed jobs with GPS and employer firmographics, and it paginates deep. HTML scrapes search pages and is the fallback. Auto tries GraphQL and falls back on failure.",
            "default": "auto"
          },
          "incremental": {
            "title": "Only return jobs not seen before",
            "type": "boolean",
            "description": "Remembers job keys between runs and emits only new postings (plus any that have since expired). Use it to monitor a search instead of re-downloading it.",
            "default": false
          },
          "stateKey": {
            "title": "Incremental state key",
            "type": "string",
            "description": "Names the memory used by incremental mode. Runs sharing a key share history. Defaults to the query + location + country."
          },
          "startUrls": {
            "title": "Start URLs",
            "type": "array",
            "description": "Paste Indeed search URLs directly instead of (or as well as) building them from queries.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "maxItems": {
            "title": "Max jobs",
            "minimum": 1,
            "type": "integer",
            "description": "Stop after this many jobs.",
            "default": 200
          },
          "scrapeFullDescription": {
            "title": "Scrape full job descriptions",
            "type": "boolean",
            "description": "[HTML engine only] Fetch the complete posting text for every job. Costs one extra request per job — turn off for a fast, cheap listing-level crawl.",
            "default": true
          },
          "fanOut": {
            "title": "Widen the search (fan-out)",
            "type": "boolean",
            "description": "[HTML engine only] Logged-out Indeed serves one page of results per search. Fan-out re-runs each query across both sort orders and several date windows, then de-duplicates, to reach far more jobs. Costs more requests.",
            "default": false
          },
          "resolveApplyUrls": {
            "title": "Resolve apply URLs to the employer's ATS",
            "type": "boolean",
            "description": "[HTML engine only] Follow Indeed's apply redirect to the real destination and name the ATS (Greenhouse, Lever, Workday, Ashby, iCIMS...). Costs one extra request per job and needs a residential proxy.",
            "default": false
          },
          "includeSponsored": {
            "title": "Include sponsored listings",
            "type": "boolean",
            "description": "[HTML engine only] Roughly two thirds of Indeed's first page is paid placement. Every job is flagged with isSponsored either way.",
            "default": true
          },
          "sort": {
            "title": "Sort by",
            "enum": [
              "relevance",
              "date"
            ],
            "type": "string",
            "description": "[HTML engine only] Relevance is Indeed's default ranking. Date posted surfaces the newest listings first — and returns a different result set, which is why fan-out uses both.",
            "default": "relevance"
          },
          "maxDaysOld": {
            "title": "Posted within (days)",
            "minimum": 1,
            "maximum": 60,
            "type": "integer",
            "description": "Only jobs posted in the last N days. Leave empty for no limit."
          },
          "radius": {
            "title": "Search radius",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Distance from the location, in the country's default unit. Ignored when no location is set.",
            "default": 25
          },
          "jobTypes": {
            "title": "Job types",
            "type": "array",
            "description": "[HTML engine only] Restrict to these employment types. Leave empty for all.",
            "items": {
              "type": "string",
              "enum": [
                "fulltime",
                "parttime",
                "contract",
                "temporary",
                "internship",
                "permanent",
                "commission",
                "apprenticeship"
              ],
              "enumTitles": [
                "Full-time",
                "Part-time",
                "Contract",
                "Temporary",
                "Internship",
                "Permanent",
                "Commission",
                "Apprenticeship"
              ]
            }
          },
          "experienceLevels": {
            "title": "Experience level",
            "type": "array",
            "description": "[HTML engine only] Restrict to these seniority levels. Leave empty for all.",
            "items": {
              "type": "string",
              "enum": [
                "entry_level",
                "mid_level",
                "senior_level"
              ],
              "enumTitles": [
                "Entry level",
                "Mid level",
                "Senior level"
              ]
            }
          },
          "remoteOnly": {
            "title": "Remote only",
            "type": "boolean",
            "description": "Only jobs Indeed tags as remote.",
            "default": false
          },
          "maxPagesPerSearch": {
            "title": "Max pages per search",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "[HTML engine only] Indeed shows a sign-in wall past page 1 for anonymous traffic. Raising this makes the Actor attempt deeper pages and report in the log whether they worked; it never fails the run if they are walled.",
            "default": 1
          },
          "maxConcurrency": {
            "title": "Max concurrency",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "Parallel requests. Lower this if you see blocks.",
            "default": 5
          },
          "proxyConfiguration": {
            "title": "Proxy",
            "type": "object",
            "description": "Residential proxies are strongly recommended: they are what unlocks deep pagination and apply-URL resolution.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ]
            }
          },
          "dedupeByTitleCompany": {
            "title": "Collapse duplicate postings (same title + company)",
            "type": "boolean",
            "description": "Indeed lists the same opening from multiple feeds under different job keys. Turn this on to keep only the first of each title+company pair. Off by default because a company hiring the same role in several cities would also be collapsed.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}