{
  "openapi": "3.0.1",
  "info": {
    "title": "Indeed Jobs Scraper - Cheap and Fast",
    "description": "Scrape fresh Indeed jobs with full descriptions, salaries, company data, apply links, country validation, duplicate removal, and hard cost limits",
    "version": "0.0",
    "x-build-id": "7KgeL6xINuJuxSNGh"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/fabri-lab~indeed-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-fabri-lab-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/fabri-lab~indeed-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-fabri-lab-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/fabri-lab~indeed-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-fabri-lab-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",
        "required": [
          "country"
        ],
        "properties": {
          "positions": {
            "title": "Positions / keywords",
            "type": "array",
            "description": "Enter one or more job titles, roles, or keywords to search on Indeed. Provide at least one of positions, customSearchUrls, or companyJobsUrls.",
            "default": [
              "mekatronik"
            ],
            "items": {
              "type": "string"
            }
          },
          "country": {
            "title": "Country",
            "enum": [
              "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",
              "SA",
              "SE",
              "SG",
              "TH",
              "TR",
              "TW",
              "UA",
              "US",
              "UY",
              "VE",
              "VN",
              "ZA"
            ],
            "type": "string",
            "description": "Select the Indeed country site to search. Results from other countries will be skipped and not charged.",
            "default": "TR"
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "Enter a city, state, region, or remote keyword.",
            "default": ""
          },
          "maxJobsPerSearch": {
            "title": "Maximum jobs per search",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Limit applied separately to each position/search URL. Saved jobs may be lower after filters, duplicates, blocked pages, missing descriptions, or country validation.",
            "default": 5
          },
          "maxJobsTotal": {
            "title": "Maximum jobs total",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "Hard stop for the whole run. Use this to control maximum cost.",
            "default": 5
          },
          "postedWithin": {
            "title": "Posted within",
            "enum": [
              "last_24_hours",
              "last_3_days",
              "last_7_days",
              "last_14_days",
              "any_time"
            ],
            "type": "string",
            "description": "Applies Indeed's date filter and post-filters parseable dates. Listings with unknown posted dates may be kept.",
            "default": "any_time"
          },
          "scrapeMode": {
            "title": "Scrape mode",
            "enum": [
              "high_volume",
              "full_description"
            ],
            "type": "string",
            "description": "High volume saves jobs from Indeed search cards and avoids most detail-page blocks. Full descriptions opens every job detail page and can save fewer jobs if Indeed blocks those pages.",
            "default": "high_volume"
          },
          "scrapeCompanyDetails": {
            "title": "Scrape company details",
            "type": "boolean",
            "description": "Best-effort company rating, reviews count, logo, and company URL extraction in full_description mode.",
            "default": true
          },
          "followApplyRedirects": {
            "title": "Follow apply redirects",
            "type": "boolean",
            "description": "Best-effort external apply link resolution in full_description mode when Indeed exposes an apply link.",
            "default": true
          },
          "saveOnlyUniqueJobs": {
            "title": "Save only unique jobs",
            "type": "boolean",
            "description": "Remove duplicate job listings from the dataset.",
            "default": true
          },
          "excludeHourlySalary": {
            "title": "Exclude hourly salary",
            "type": "boolean",
            "description": "Skip jobs that appear to use hourly salary.",
            "default": false
          },
          "salaryType": {
            "title": "Salary type",
            "enum": [
              "any",
              "hourly",
              "annual",
              "monthly",
              "unknown"
            ],
            "type": "string",
            "description": "Keep jobs matching this salary type.",
            "default": "any"
          },
          "jobType": {
            "title": "Job type",
            "enum": [
              "any",
              "full_time",
              "part_time",
              "contract",
              "temporary",
              "internship",
              "remote",
              "hybrid"
            ],
            "type": "string",
            "description": "Keep jobs matching this job type.",
            "default": "any"
          },
          "customSearchUrls": {
            "title": "Custom Indeed search URLs",
            "type": "array",
            "description": "Indeed search URLs to scrape directly. Provide at least one of positions, customSearchUrls, or companyJobsUrls.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "companyJobsUrls": {
            "title": "Company jobs URLs",
            "type": "array",
            "description": "Indeed company jobs URLs such as https://www.indeed.com/cmp/Google/jobs. Provide at least one of positions, customSearchUrls, or companyJobsUrls.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Proxy settings. Residential Apify Proxy is recommended for Indeed. If residential proxies are not available, the actor falls back to automatic Apify Proxy.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}