{
  "openapi": "3.0.1",
  "info": {
    "title": "LinkedIn Job Monitor & Hiring Signal Alerts",
    "description": "Monitor LinkedIn job changes, new hiring and closed roles. Get scored B2B hiring signals and daily job alerts for recruiting, sales and market research.",
    "version": "0.0",
    "x-build-id": "19vtX1D7hY3kD85JC"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/marielise.dev~linkedin-job-change-monitor/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-marielise.dev-linkedin-job-change-monitor",
        "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/marielise.dev~linkedin-job-change-monitor/runs": {
      "post": {
        "operationId": "runs-sync-marielise.dev-linkedin-job-change-monitor",
        "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/marielise.dev~linkedin-job-change-monitor/run-sync": {
      "post": {
        "operationId": "run-sync-marielise.dev-linkedin-job-change-monitor",
        "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": "Run mode",
            "enum": [
              "once",
              "watch",
              "reset"
            ],
            "type": "string",
            "description": "Use one-time export for a current vacancy list. Use watch on a schedule: the first run saves a baseline and later runs output only what changed.",
            "default": "once"
          },
          "watchId": {
            "title": "Watch ID",
            "type": "string",
            "description": "A stable name for this saved search, e.g. 'fintech-sales-london'. Watch state is keyed on this value, so keep it identical across scheduled runs. Leave blank and one is derived from your search settings.",
            "default": ""
          },
          "keywords": {
            "title": "Job keywords",
            "type": "string",
            "description": "What role or skill to find, e.g. 'account executive', 'machine learning engineer', or 'SAP consultant'.",
            "default": "account executive"
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "City, region or country, e.g. 'London, England, United Kingdom'. Leave blank for all locations.",
            "default": ""
          },
          "datePosted": {
            "title": "Posted date",
            "enum": [
              "anyTime",
              "past24Hours",
              "pastWeek",
              "pastMonth"
            ],
            "type": "string",
            "description": "Limit the public search to recently posted roles.",
            "default": "pastWeek"
          },
          "remoteOnly": {
            "title": "Remote roles only",
            "type": "boolean",
            "description": "Ask LinkedIn's public search for remote roles only.",
            "default": false
          },
          "employmentTypes": {
            "title": "Employment type",
            "type": "array",
            "description": "Optional filter applied to extracted job details. Leave empty for all types.",
            "items": {
              "type": "string",
              "enum": [
                "FULL_TIME",
                "PART_TIME",
                "CONTRACT",
                "TEMPORARY",
                "INTERNSHIP",
                "VOLUNTEER",
                "OTHER"
              ]
            },
            "default": []
          },
          "maxJobs": {
            "title": "Maximum jobs",
            "minimum": 10,
            "maximum": 200,
            "type": "integer",
            "description": "Maximum job cards to collect and inspect per run. Higher values make more plain-HTTP requests and take longer.",
            "default": 50
          },
          "vertical": {
            "title": "Client vertical",
            "enum": [
              "auto",
              "any",
              "fintech",
              "saas",
              "cybersecurity",
              "martech",
              "healthtech",
              "climate_tech"
            ],
            "type": "string",
            "description": "Auto (recommended) detects a named vertical in your watch ID, job keywords, or include-keywords. For example `fintech-sales-london` automatically applies the fintech evidence filter. Select a vertical explicitly to override auto-detection.",
            "default": "auto"
          },
          "targetCompanies": {
            "title": "Target companies",
            "type": "array",
            "description": "Optional exact company names to watch. Leave empty to monitor the whole search market.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "includeKeywords": {
            "title": "Must include keywords",
            "type": "array",
            "description": "Keep only jobs whose title, company, location, or public description contains at least one term. Examples: SaaS, enterprise, fintech.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "excludeKeywords": {
            "title": "Exclude keywords",
            "type": "array",
            "description": "Remove jobs containing any term, e.g. internship, recruiter, graduate.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "minFitScore": {
            "title": "Minimum signal score",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Only return jobs with this deterministic 0–100 hiring-signal score. Use 40+ to focus on expansion, enterprise, software, and sales-growth signals.",
            "default": 0
          },
          "excludeIntermediaries": {
            "title": "Exclude recruiters and agencies",
            "type": "boolean",
            "description": "Remove likely staffing, recruitment, executive-search, and consultancy intermediaries. Turn off only if agency-posted roles matter to your use case.",
            "default": true
          },
          "notifyOnClosed": {
            "title": "Report closed jobs",
            "type": "boolean",
            "description": "In watch mode, output an event when a previously seen role disappears from the configured search results.",
            "default": true
          },
          "includeFullDescription": {
            "title": "Include full job description",
            "type": "boolean",
            "description": "Off by default to keep datasets compact. Every result includes a 600-character excerpt and a signal summary; enable only when downstream processing needs the complete public description.",
            "default": false
          },
          "proxy": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "The actor uses direct HTTP by default, which is the cheapest and works for normal run sizes. Enable an Apify proxy only if your runs are being rate-limited.",
            "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
                  }
                }
              },
              "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}