{
  "openapi": "3.0.1",
  "info": {
    "title": "Indeed Jobs Intelligence Scraper",
    "description": "HTTP-only Indeed scraper for clean job data, external apply URLs, salary normalization, skills extraction, company enrichment, delta monitoring, and run quality reports.",
    "version": "0.1",
    "x-build-id": "1eQ39pOk3KDPXWYKd"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/trakk~indeed-jobs-intelligence-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-trakk-indeed-jobs-intelligence-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~indeed-jobs-intelligence-scraper/runs": {
      "post": {
        "operationId": "runs-sync-trakk-indeed-jobs-intelligence-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~indeed-jobs-intelligence-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-trakk-indeed-jobs-intelligence-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": {
          "mode": {
            "title": "Mode",
            "enum": [
              "AUTO",
              "SEARCH",
              "DETAIL"
            ],
            "type": "string",
            "description": "AUTO detects mode from provided input. SEARCH starts from query/location. DETAIL starts from job URLs or job IDs.",
            "default": "AUTO"
          },
          "country": {
            "title": "Country",
            "enum": [
              "us",
              "gb",
              "ca",
              "au",
              "de",
              "fr",
              "nl",
              "es",
              "it",
              "br",
              "in",
              "sg",
              "za"
            ],
            "type": "string",
            "description": "Indeed country/domain to use for generated search and detail URLs.",
            "default": "us"
          },
          "queries": {
            "title": "Search queries",
            "type": "array",
            "description": "Job titles or keywords to search for.",
            "items": {
              "type": "string"
            },
            "default": [
              "python developer"
            ]
          },
          "locations": {
            "title": "Locations",
            "type": "array",
            "description": "Locations to combine with every query. Use Remote for remote searches.",
            "items": {
              "type": "string"
            },
            "default": [
              "New York, NY"
            ]
          },
          "startUrls": {
            "title": "Start URLs",
            "type": "array",
            "description": "Indeed search URLs or job detail URLs. URL mode keeps the filters from the URL.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "jobIds": {
            "title": "Job IDs",
            "type": "array",
            "description": "Indeed job keys to enrich directly.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "maxResults": {
            "title": "Maximum jobs",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "Maximum number of jobs to output.",
            "default": 100
          },
          "maxPagesPerSearch": {
            "title": "Max pages per search",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Safety limit for pagination per query/location or start URL.",
            "default": 10
          },
          "postedWithinDays": {
            "title": "Posted within",
            "enum": [
              "",
              "1",
              "3",
              "7",
              "14",
              "30"
            ],
            "type": "string",
            "description": "Indeed fromage filter.",
            "default": "7"
          },
          "jobType": {
            "title": "Job type",
            "enum": [
              "",
              "fulltime",
              "parttime",
              "contract",
              "temporary",
              "internship",
              "commission"
            ],
            "type": "string",
            "description": "Indeed jt filter.",
            "default": ""
          },
          "remote": {
            "title": "Remote filter",
            "enum": [
              "",
              "remote",
              "hybrid",
              "on_site"
            ],
            "type": "string",
            "description": "Remote preference. Best-effort because Indeed varies filters by country.",
            "default": ""
          },
          "radius": {
            "title": "Radius",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Search radius in miles for Indeed domains that support it.",
            "default": 25
          },
          "sort": {
            "title": "Sort",
            "enum": [
              "relevance",
              "date"
            ],
            "type": "string",
            "description": "Sort order for generated search URLs.",
            "default": "relevance"
          },
          "enrichmentMode": {
            "title": "Enrichment mode",
            "enum": [
              "fast",
              "full"
            ],
            "type": "string",
            "description": "fast outputs search cards only. full fetches every job detail page.",
            "default": "full"
          },
          "dedupe": {
            "title": "Deduplicate jobs",
            "type": "boolean",
            "description": "Skip duplicate job keys/canonical URLs.",
            "default": true
          },
          "normalizeSalary": {
            "title": "Normalize salary",
            "type": "boolean",
            "description": "Parse salary text into min/max/unit/currency and annualized fields.",
            "default": true
          },
          "extractSkills": {
            "title": "Extract skills",
            "type": "boolean",
            "description": "Extract skills from job description and attributes using rule-based dictionaries.",
            "default": true
          },
          "resolveApplyUrls": {
            "title": "Resolve apply URLs",
            "type": "boolean",
            "description": "Follow external apply redirects when an apply URL is available.",
            "default": true
          },
          "enrichCompanyProfiles": {
            "title": "Enrich company profiles",
            "type": "boolean",
            "description": "Fetch Indeed company pages once per company to add rating, company size, revenue, industry, description, links, CEO, header image, and addresses when available.",
            "default": true
          },
          "enableDeltaMonitoring": {
            "title": "Delta monitoring",
            "type": "boolean",
            "description": "Compare the current run with the previous run stored in the default key-value store.",
            "default": true
          },
          "rawOutput": {
            "title": "Raw output",
            "type": "boolean",
            "description": "Include selected raw parser/debug fields. This can increase dataset size.",
            "default": false
          },
          "candidateProfile": {
            "title": "Candidate profile",
            "type": "object",
            "description": "Optional future/premium matching input. Basic skill matching is supported when skills are provided.",
            "default": {
              "skills": [],
              "targetSalaryAnnual": null
            }
          },
          "maxConcurrency": {
            "title": "Max concurrency",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "Maximum parallel HTTP requests.",
            "default": 5
          },
          "maxRetries": {
            "title": "Max retries",
            "minimum": 0,
            "maximum": 20,
            "type": "integer",
            "description": "Main retry budget for HTTP 429/5xx/parse errors. Proxy and block retries have separate budgets.",
            "default": 5
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Residential proxies are recommended. Use country matching the Indeed domain.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ],
              "apifyProxyCountry": "US"
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}