{
  "openapi": "3.0.1",
  "info": {
    "title": "Indeed Jobs Scraper Pro: Search, Salaries & Company Intel",
    "description": "Scrape Indeed jobs from keywords, search URLs, job IDs, or company pages. Each row ships parsed salary, skills, seniority tier, remote/hybrid signal, Easy Apply flag, sponsored flag, optional company enrichment. 18 countries. Pay per row.",
    "version": "0.1",
    "x-build-id": "z7Mh371mRbZvZTtYS"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/scrapemint~indeed-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-scrapemint-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/scrapemint~indeed-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-scrapemint-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/scrapemint~indeed-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-scrapemint-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": {
          "keywords": {
            "title": "Search keywords",
            "type": "array",
            "description": "Position or keyword strings. Each runs an independent search and combines with locations. Leave blank if you are passing searchUrls or jobIds directly.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "locations": {
            "title": "Locations",
            "type": "array",
            "description": "Cities, states, postal codes, or country names. Each combines with each keyword (cartesian product). Leave blank for nationwide searches.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "country": {
            "title": "Country",
            "enum": [
              "US",
              "GB",
              "CA",
              "AU",
              "IE",
              "DE",
              "FR",
              "IT",
              "ES",
              "NL",
              "BE",
              "IN",
              "JP",
              "SG",
              "BR",
              "MX",
              "ZA",
              "AE"
            ],
            "type": "string",
            "description": "Indeed regional domain. Affects which jobs are surfaced. 18 countries supported.",
            "default": "US"
          },
          "searchUrls": {
            "title": "Direct search URLs (alternative input)",
            "type": "array",
            "description": "Paste any Indeed search URL. Filters and pagination are extracted automatically. Mix with keywords or use exclusively.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "jobIds": {
            "title": "Direct job IDs (jk parameter)",
            "type": "array",
            "description": "Indeed job IDs from the jk= URL param. Skips the listing crawl entirely. Fastest input mode.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "companyUrls": {
            "title": "Indeed company pages",
            "type": "array",
            "description": "URLs to Indeed company pages (https://www.indeed.com/cmp/...). Pulls every job posted on that company page up to maxJobs.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "maxJobs": {
            "title": "Max jobs",
            "minimum": 0,
            "maximum": 10000,
            "type": "integer",
            "description": "Hard cap on jobs returned across all queries. Indeed paginates 15 jobs per page. Set 0 for everything Indeed exposes.",
            "default": 25
          },
          "datePosted": {
            "title": "Date posted",
            "enum": [
              "any",
              "1",
              "3",
              "7",
              "14"
            ],
            "type": "string",
            "description": "Filter by recency. Maps to Indeed's fromage param.",
            "default": "any"
          },
          "jobType": {
            "title": "Job type",
            "enum": [
              "any",
              "fulltime",
              "parttime",
              "contract",
              "temporary",
              "internship"
            ],
            "type": "string",
            "description": "Filter by employment type.",
            "default": "any"
          },
          "experienceLevel": {
            "title": "Experience level",
            "enum": [
              "any",
              "entry_level",
              "mid_level",
              "senior_level"
            ],
            "type": "string",
            "description": "Filter by Indeed experience tag.",
            "default": "any"
          },
          "remoteFilter": {
            "title": "Remote / hybrid / on site",
            "enum": [
              "any",
              "remote",
              "hybrid",
              "onsite"
            ],
            "type": "string",
            "description": "Filter by work location type.",
            "default": "any"
          },
          "minSalary": {
            "title": "Minimum salary",
            "minimum": 0,
            "maximum": 1000000,
            "type": "integer",
            "description": "Minimum salary in the local currency. Indeed often estimates salaries when the employer does not list one.",
            "default": 0
          },
          "radius": {
            "title": "Search radius (miles)",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Distance from the location in miles. 0 means exact match. 25 is Indeed's default. Common values: 5, 10, 15, 25, 50, 100.",
            "default": 25
          },
          "splitByCity": {
            "title": "Split nationwide search into top cities",
            "type": "boolean",
            "description": "When you want lots of jobs from a country, Indeed caps each search at about 1000 results. Enable this to fan the search out across the country's top metro areas.",
            "default": false
          },
          "scrapeCompanyDetails": {
            "title": "Scrape company details",
            "type": "boolean",
            "description": "Fetch each unique company's Indeed page and enrich rows with rating, total reviews, size band, industry, and founded year. Pushed as a separate dataset row per company.",
            "default": false
          },
          "extractSkills": {
            "title": "Extract skills",
            "type": "boolean",
            "description": "Detect mentioned skills in the job description (200+ tech and business skills, multi language).",
            "default": true
          },
          "parseSalary": {
            "title": "Parse salary into structured fields",
            "type": "boolean",
            "description": "Convert salary text into min, max, period, currency, and a normalized annual estimate. Distinguishes employer listed from Indeed estimated.",
            "default": true
          },
          "classifySeniority": {
            "title": "Classify seniority tier",
            "type": "boolean",
            "description": "Tag each job as intern, entry, mid, senior, lead, principal, staff, manager, director, vp, or c level based on title.",
            "default": true
          },
          "detectEasyApply": {
            "title": "Detect Easy Apply",
            "type": "boolean",
            "description": "Flag jobs that use Indeed's one click Easy Apply (vs employer redirect).",
            "default": true
          },
          "detectRemoteHybrid": {
            "title": "Detect remote and hybrid",
            "type": "boolean",
            "description": "Parse the location field and description for remote, hybrid, or on site work signals. Sets a workMode field on every row.",
            "default": true
          },
          "followApplyRedirect": {
            "title": "Follow apply redirect",
            "type": "boolean",
            "description": "Resolve the final Apply URL by following Indeed's redirect chain. Returns the employer's external ATS URL when present. Adds latency.",
            "default": false
          },
          "dedupe": {
            "title": "Deduplicate across runs",
            "type": "boolean",
            "description": "Skip job IDs already pushed in previous runs. Turn off to refresh stale rows.",
            "default": true
          },
          "concurrency": {
            "title": "Concurrency",
            "minimum": 1,
            "maximum": 16,
            "type": "integer",
            "description": "Number of pages processed in parallel. Three to five is safe. Higher values trigger Cloudflare challenges.",
            "default": 4
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Apify proxy. Residential is required for Indeed at any meaningful volume. Datacenter is blocked within minutes.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}