{
  "openapi": "3.0.1",
  "info": {
    "title": "Ethosia Israel Tech Jobs Scraper",
    "description": "Scrape and monitor Israeli tech jobs from Ethosia: search by keyword or location, extract full job details, and track new, updated, or removed listings over time.",
    "version": "1.0",
    "x-build-id": "EbZhG0AcU3XIsGiBF"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/parsebird~ethosia-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-parsebird-ethosia-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/parsebird~ethosia-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-parsebird-ethosia-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/parsebird~ethosia-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-parsebird-ethosia-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": {
          "startUrls": {
            "title": "Start URLs",
            "type": "array",
            "description": "Public Ethosia search, sitemap, or individual job page URLs.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "searchQuery": {
            "title": "Search query",
            "type": "string",
            "description": "One job title, skill, or keyword to search on Ethosia. Ignored when Search queries (batch) below is filled in."
          },
          "searchQueries": {
            "title": "Search queries (batch)",
            "type": "array",
            "description": "Run several independent job searches in one go and deduplicate matching roles by stable job ID. Takes precedence over Search query above.",
            "items": {
              "type": "string"
            }
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "Keep only roles whose public location text matches this (e.g. \"מרכז\", \"תל אביב\", \"Haifa\"). Ignored when Locations (batch) below is filled in."
          },
          "locations": {
            "title": "Locations (batch)",
            "type": "array",
            "description": "Combine several location filters with the search queries above, according to Batch mode. Takes precedence over Location above.",
            "items": {
              "type": "string"
            }
          },
          "batchMode": {
            "title": "Batch mode",
            "enum": [
              "cartesian",
              "pairwise"
            ],
            "type": "string",
            "description": "How to combine every batch search query with every batch location.",
            "default": "cartesian"
          },
          "inputs": {
            "title": "Advanced targets (optional)",
            "type": "array",
            "description": "Each object may set: id (your own label), query, location, and urls (an array of source URLs). Example: [{\"id\": \"tel-aviv-backend\", \"query\": \"backend developer\", \"location\": \"תל אביב\"}]"
          },
          "category": {
            "title": "Category",
            "type": "string",
            "description": "Keep roles matching one source-published category/field."
          },
          "categories": {
            "title": "Categories",
            "type": "array",
            "description": "Keep roles matching any of these source-published categories.",
            "items": {
              "type": "string"
            }
          },
          "skills": {
            "title": "Skills",
            "type": "array",
            "description": "Keep roles whose description or requirements text mentions any of these skills.",
            "items": {
              "type": "string"
            }
          },
          "seniorities": {
            "title": "Seniority",
            "type": "array",
            "description": "Keep roles matching any of these source-published seniority/career-stage labels (e.g. \"בכיר\", \"מתחיל\").",
            "items": {
              "type": "string"
            }
          },
          "experienceMin": {
            "title": "Minimum experience (years)",
            "type": "integer",
            "description": "Keep roles whose published experience range reaches at least this many years."
          },
          "experienceMax": {
            "title": "Maximum experience (years)",
            "type": "integer",
            "description": "Keep roles whose published experience range starts at or below this many years."
          },
          "salaryMin": {
            "title": "Minimum salary",
            "type": "integer",
            "description": "Keep roles whose published salary range reaches this minimum. Jobs without salary evidence are excluded when this is set — no values are invented."
          },
          "salaryMax": {
            "title": "Maximum salary",
            "type": "integer",
            "description": "Keep roles whose published salary range starts below this maximum."
          },
          "remote": {
            "title": "Remote only",
            "type": "boolean",
            "description": "Keep only listings with explicit remote or hybrid work evidence in the source text.",
            "default": false
          },
          "languages": {
            "title": "Languages",
            "type": "array",
            "description": "Keep roles whose detected listing language matches (\"he\" or \"en\").",
            "items": {
              "type": "string"
            }
          },
          "monitorMode": {
            "title": "Monitor mode",
            "enum": [
              "snapshot",
              "compare"
            ],
            "type": "string",
            "description": "Snapshot returns every currently matching job. Compare returns only what changed since the last run with this State key.",
            "default": "snapshot"
          },
          "stateKey": {
            "title": "State key",
            "type": "string",
            "description": "Name for this recurring watchlist. Use the same value across scheduled runs of the same scope; use a different value to keep separate watchlists apart.",
            "default": "ethosia-default"
          },
          "includeUnchanged": {
            "title": "Include unchanged listings",
            "type": "boolean",
            "description": "In Compare mode, also return listings that had no change since the last run.",
            "default": false
          },
          "maxItems": {
            "title": "Max items",
            "minimum": 1,
            "type": "integer",
            "description": "Maximum number of unique jobs returned after filtering and sorting.",
            "default": 10
          },
          "maxConcurrency": {
            "title": "Max concurrency",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "Maximum number of public pages fetched at the same time.",
            "default": 6
          },
          "maxRequestRetries": {
            "title": "Max request retries",
            "minimum": 0,
            "maximum": 10,
            "type": "integer",
            "description": "How many times to retry a page before recording it as a visible failure.",
            "default": 3
          },
          "sortBy": {
            "title": "Sort by",
            "enum": [
              "postedDate",
              "title",
              "location",
              "salary",
              "stableId",
              "retrievedAt"
            ],
            "type": "string",
            "description": "Field to sort the final dataset by.",
            "default": "postedDate"
          },
          "sortOrder": {
            "title": "Sort order",
            "enum": [
              "asc",
              "desc"
            ],
            "type": "string",
            "description": "Ascending or descending order for the selected sort field.",
            "default": "desc"
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Optional connection settings for account-specific routing.",
            "default": {
              "useApifyProxy": 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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}