{
  "openapi": "3.0.1",
  "info": {
    "title": "All Jobs Scraper Ppe",
    "description": "Extract 50,000+ job listings from Indeed, LinkedIn, Glassdoor, ZipRecruiter, and Bayt in one API call. Get 50+ data fields per job: salary ranges, company ratings, emails, phones, social links, skills, and apply URLs. Currency conversion, cross-platform dedup, 70+ countries.",
    "version": "1.0",
    "x-build-id": "QYLqcsjGmm9gOrPkI"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/silentflow~all-jobs-scraper-ppe/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-silentflow-all-jobs-scraper-ppe",
        "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/silentflow~all-jobs-scraper-ppe/runs": {
      "post": {
        "operationId": "runs-sync-silentflow-all-jobs-scraper-ppe",
        "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/silentflow~all-jobs-scraper-ppe/run-sync": {
      "post": {
        "operationId": "run-sync-silentflow-all-jobs-scraper-ppe",
        "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": {
          "searchTerms": {
            "title": "🔎 Search Terms",
            "type": "array",
            "description": "Job search keywords. Each term runs a separate search across all selected platforms.",
            "items": {
              "type": "string"
            }
          },
          "country": {
            "title": "🌍 Country",
            "enum": [
              "usa",
              "uk",
              "canada",
              "australia",
              "india",
              "france",
              "germany",
              "brazil",
              "mexico",
              "spain",
              "italy",
              "netherlands",
              "belgium",
              "switzerland",
              "austria",
              "japan",
              "singapore",
              "hong kong",
              "south korea",
              "argentina",
              "chile",
              "colombia",
              "peru",
              "costa rica",
              "ecuador",
              "uruguay",
              "venezuela",
              "panama",
              "dominican republic",
              "ireland",
              "new zealand",
              "south africa",
              "nigeria",
              "pakistan",
              "philippines",
              "poland",
              "romania",
              "czech republic",
              "indonesia",
              "taiwan",
              "thailand",
              "vietnam",
              "bangladesh",
              "sri lanka",
              "malaysia",
              "egypt",
              "morocco",
              "saudi arabia",
              "united arab emirates",
              "qatar",
              "kuwait",
              "bahrain",
              "oman",
              "turkey",
              "israel",
              "portugal",
              "sweden",
              "norway",
              "denmark",
              "finland",
              "hungary",
              "greece",
              "croatia",
              "ukraine",
              "luxembourg",
              "bulgaria",
              "slovakia",
              "serbia",
              "lithuania",
              "latvia",
              "estonia",
              "kenya",
              "ghana"
            ],
            "type": "string",
            "description": "Country for the job search.",
            "default": "usa"
          },
          "location": {
            "title": "📍 Location",
            "type": "string",
            "description": "City or region (e.g. 'New York', 'London', 'Dubai')."
          },
          "platforms": {
            "title": "🔗 Platforms",
            "type": "array",
            "description": "Select one or more job platforms to search simultaneously.",
            "items": {
              "type": "string",
              "enum": [
                "indeed",
                "linkedin",
                "glassdoor",
                "ziprecruiter",
                "bayt"
              ],
              "enumTitles": [
                "Indeed",
                "LinkedIn",
                "Glassdoor",
                "ZipRecruiter",
                "Bayt (Middle East)"
              ]
            },
            "default": [
              "indeed",
              "linkedin",
              "glassdoor",
              "ziprecruiter"
            ]
          },
          "maxResults": {
            "title": "Max Results",
            "minimum": 1,
            "type": "integer",
            "description": "Maximum total jobs to return across all platforms.",
            "default": 100
          },
          "postedSince": {
            "title": "📅 Posted Within",
            "enum": [
              "",
              "24h",
              "3d",
              "7d",
              "30d"
            ],
            "type": "string",
            "description": "Only return jobs posted within this time period.",
            "default": ""
          },
          "jobType": {
            "title": "💼 Job Type",
            "enum": [
              "all",
              "fulltime",
              "parttime",
              "contract",
              "internship",
              "temporary"
            ],
            "type": "string",
            "description": "Filter by employment type.",
            "default": "all"
          },
          "remoteOnly": {
            "title": "🏠 Remote Only",
            "type": "boolean",
            "description": "Only return remote job listings.",
            "default": false
          },
          "targetCurrency": {
            "title": "💱 Convert Salaries To",
            "enum": [
              "",
              "USD",
              "EUR",
              "GBP",
              "CAD",
              "AUD",
              "JPY",
              "INR",
              "AED",
              "SAR",
              "BRL",
              "MXN",
              "CHF",
              "SEK",
              "NOK",
              "DKK",
              "PLN",
              "CZK",
              "HUF",
              "SGD",
              "HKD",
              "KRW",
              "TWD",
              "THB",
              "PHP",
              "IDR",
              "MYR",
              "NZD",
              "ZAR",
              "NGN",
              "KES",
              "EGP",
              "TRY",
              "ILS"
            ],
            "type": "string",
            "description": "Convert all salary figures to this currency using live exchange rates. Leave empty to keep original currencies.",
            "default": ""
          },
          "includeDescription": {
            "title": "📝 Include Descriptions",
            "type": "boolean",
            "description": "Fetch full job descriptions. Disabling speeds up scraping.",
            "default": true
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}