{
  "openapi": "3.0.1",
  "info": {
    "title": "B2B Company Buying Signals — Hiring & Tech Radar",
    "description": "Find B2B buying signals from company hiring activity. Track Greenhouse, Lever, Workday and career pages for growth, leadership hires, tech-stack changes and account-level sales intelligence.",
    "version": "0.1",
    "x-build-id": "BhVC1jeivpHkVGgDj"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/nexascout~b2b-company-buying-signal-radar/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-nexascout-b2b-company-buying-signal-radar",
        "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/nexascout~b2b-company-buying-signal-radar/runs": {
      "post": {
        "operationId": "runs-sync-nexascout-b2b-company-buying-signal-radar",
        "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/nexascout~b2b-company-buying-signal-radar/run-sync": {
      "post": {
        "operationId": "run-sync-nexascout-b2b-company-buying-signal-radar",
        "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": {
          "companyDomains": {
            "title": "Company domains",
            "type": "array",
            "description": "Company domains to monitor. The Actor tries to discover public careers/ATS links automatically.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "careerUrls": {
            "title": "Career / ATS URLs",
            "type": "array",
            "description": "Optional direct Greenhouse, Lever, Workday, or public careers URLs. Use these when you already know the company's career board.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "trackerName": {
            "title": "Tracker name",
            "type": "string",
            "description": "Stable history namespace. Reuse the same tracker name across recurring runs to unlock deltas, RISING/PERSISTENT/FADING states and new-tech detection.",
            "default": "my-b2b-buying-signals"
          },
          "trackingEnabled": {
            "title": "Track across runs",
            "type": "boolean",
            "description": "Persist private company history and compare current hiring signals with prior runs.",
            "default": true
          },
          "resetHistory": {
            "title": "Reset tracker history",
            "type": "boolean",
            "description": "Treat this run as a fresh baseline for the tracker.",
            "default": false
          },
          "includeStable": {
            "title": "Include stable companies",
            "type": "boolean",
            "description": "When disabled, recurring runs focus on changed or sufficiently strong buying-signal rows instead of returning every unchanged company.",
            "default": false
          },
          "signalScoreThreshold": {
            "title": "Minimum buying-signal score",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Stable companies below this score are suppressed when includeStable is off.",
            "default": 35
          },
          "maxJobsPerCompany": {
            "title": "Maximum jobs per company",
            "minimum": 1,
            "maximum": 500,
            "type": "integer",
            "description": "Safety cap for public job postings processed per company.",
            "default": 100
          },
          "maxOutputRows": {
            "title": "Maximum company intelligence rows",
            "minimum": 1,
            "maximum": 500,
            "type": "integer",
            "description": "Maximum company-level rows written to the dataset.",
            "default": 100
          },
          "descriptionScanLimit": {
            "title": "Job-description scan limit per company",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Maximum recent job descriptions fetched/used per company for technology-signal analysis. Greenhouse uses lightweight list retrieval plus bounded job-detail enrichment; Workday uses the same limit. Keep modest for broad scans.",
            "default": 15
          },
          "workdayDetailLimit": {
            "title": "Legacy Workday detail limit",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Backward-compatibility field. descriptionScanLimit takes precedence when provided.",
            "default": 15
          },
          "technologyWatchlist": {
            "title": "Extra technologies to watch",
            "type": "array",
            "description": "Optional custom technologies or tools to detect in job descriptions in addition to the built-in cloud, data, AI, security, GTM and enterprise-software dictionary.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "requestTimeoutSecs": {
            "title": "Request timeout",
            "minimum": 10,
            "maximum": 90,
            "type": "integer",
            "description": "Maximum seconds for an individual public HTTP request.",
            "default": 30
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Optional. V0.1.0 is HTTP-first and defaults to direct requests; enable Apify Proxy only when a target source needs it.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}