{
  "openapi": "3.0.1",
  "info": {
    "title": "Hiring Intent Lead Finder — Companies Actively Hiring",
    "description": "Find companies actively hiring a given role — hiring is a buying signal. Get a sales-ready lead per company: role, location, job link and a ready-to-send opener. Optional decision-maker email via your own Prospeo key.",
    "version": "0.1",
    "x-build-id": "48Ej5iB4wdfnSvJpW"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/signalengine~hiring-intent-lead-finder/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-signalengine-hiring-intent-lead-finder",
        "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/signalengine~hiring-intent-lead-finder/runs": {
      "post": {
        "operationId": "runs-sync-signalengine-hiring-intent-lead-finder",
        "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/signalengine~hiring-intent-lead-finder/run-sync": {
      "post": {
        "operationId": "run-sync-signalengine-hiring-intent-lead-finder",
        "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": {
          "roles": {
            "title": "Roles to hunt",
            "type": "array",
            "description": "Job titles a company hiring for signals buying intent, e.g. [\"Marketing Manager\",\"Sales Executive\"]. Required.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "locations": {
            "title": "Locations",
            "type": "array",
            "description": "Cities/areas to search, e.g. [\"Leeds UK\",\"Manchester UK\"]. Qualify with the country (e.g. \"Manchester UK\") for accurate local results. Leave empty to search nationwide.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "jobBoards": {
            "title": "Job boards",
            "type": "array",
            "description": "Which job boards to search via Google. Use the keys indeed, linkedin, glassdoor, or add a raw host like \"reed.co.uk\".",
            "default": [
              "indeed",
              "linkedin",
              "glassdoor"
            ],
            "items": {
              "type": "string"
            }
          },
          "maxResultsPerQuery": {
            "title": "Max results per query",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "How many job-board results to parse per role+location query before deduping.",
            "default": 15
          },
          "maxLeads": {
            "title": "Max leads (run cap)",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Hard cap on total leads output/charged this run (caps your spend).",
            "default": 100
          },
          "searchEngine": {
            "title": "Search engine",
            "enum": [
              "google",
              "bing"
            ],
            "type": "string",
            "description": "Which engine to use. Google is default; the actor falls back to Bing when Google returns nothing.",
            "default": "google"
          },
          "maxConcurrency": {
            "title": "Max concurrency",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "Parallel search requests during discovery (kept modest).",
            "default": 3
          },
          "findEmails": {
            "title": "Find decision-maker emails",
            "type": "boolean",
            "description": "For each hiring company, find a decision-maker (owner/founder/director) from public LinkedIn snippets and enrich their verified work email using YOUR Prospeo key. Off by default. Adds a search + a provider call per lead.",
            "default": false
          },
          "emailProvider": {
            "title": "Email provider",
            "enum": [
              "prospeo",
              "hunter"
            ],
            "type": "string",
            "description": "Which email-finder your key is for. Prospeo matches on the decision-maker's LinkedIn URL (no company domain needed) and is recommended for this actor. Hunter requires a company domain this actor does not resolve, so it returns nothing here.",
            "default": "prospeo"
          },
          "emailApiKey": {
            "title": "Email provider API key",
            "type": "string",
            "description": "Your own Prospeo (or Hunter) API key. Only used when findEmails is on. You pay your provider directly for lookups."
          },
          "decisionMakerRoles": {
            "title": "Decision-maker roles",
            "type": "array",
            "description": "Titles to look for when finding who to pitch at each hiring company (used only when findEmails is on).",
            "default": [
              "owner",
              "founder",
              "CEO",
              "director",
              "head of marketing"
            ],
            "items": {
              "type": "string"
            }
          },
          "emailThrottleMs": {
            "title": "Email lookup throttle (ms)",
            "minimum": 0,
            "maximum": 10000,
            "type": "integer",
            "description": "Delay between provider lookups. Prevents rate-limiting (Prospeo's free tier rate-limits — rate-limited calls silently return no email). Lower to 0 on a paid plan to speed up large runs.",
            "default": 1100
          },
          "proxyConfiguration": {
            "title": "Proxy",
            "type": "object",
            "description": "Defaults to Apify's GOOGLE_SERP proxy group (required to read Google search results reliably). Residential is used for the Bing fallback.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "GOOGLE_SERP"
              ]
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}