{
  "openapi": "3.0.1",
  "info": {
    "title": "Company Tech Stack & Hiring Intelligence",
    "description": "Detect technologies from company websites, extract tech requirements from job postings, discover competitors. 200+ technology signatures across 15 categories.",
    "version": "1.1",
    "x-build-id": "KnFVv0r4V3vwDeQdU"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/cynix_dev~company-tech-intel/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-cynix_dev-company-tech-intel",
        "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/cynix_dev~company-tech-intel/runs": {
      "post": {
        "operationId": "runs-sync-cynix_dev-company-tech-intel",
        "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/cynix_dev~company-tech-intel/run-sync": {
      "post": {
        "operationId": "run-sync-cynix_dev-company-tech-intel",
        "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",
        "required": [
          "mode"
        ],
        "properties": {
          "mode": {
            "title": "Mode",
            "enum": [
              "techStack",
              "hiringSignals",
              "competitorLandscape"
            ],
            "type": "string",
            "description": "What to analyze. 'techStack' = scan the companies you list and detect their web tech stack. 'hiringSignals' = scan the same companies but shape the dataset around job postings and the tech those jobs require (best with 'Include hiring data' ON and 'Output format' = Per Job). 'competitorLandscape' = you do NOT supply companies — the actor discovers them by industry, then analyzes them.",
            "default": "techStack"
          },
          "companies": {
            "title": "Target companies",
            "type": "array",
            "description": "Company domains, names, or URLs to analyze (e.g. 'stripe.com', 'Stripe', 'https://stripe.com'). Used by 'techStack' and 'hiringSignals' modes. Ignored in 'competitorLandscape' mode.",
            "default": [
              "stripe.com",
              "vercel.com"
            ],
            "items": {
              "type": "string"
            }
          },
          "discoverySources": {
            "title": "Discovery sources (competitor mode)",
            "type": "array",
            "description": "Where to find companies when in 'competitorLandscape' mode. Supported: 'yc' (Y Combinator), 'builtin' (BuiltIn), 'welcometothejungle' (Welcome to the Jungle).",
            "default": [
              "yc",
              "builtin"
            ],
            "items": {
              "type": "string"
            }
          },
          "industry": {
            "title": "Industry filter (competitor mode)",
            "type": "string",
            "description": "Industry/category used to discover companies in 'competitorLandscape' mode (e.g. 'fintech', 'devtools', 'saas', 'ai', 'healthtech')."
          },
          "technologies": {
            "title": "Technologies to detect (optional)",
            "type": "array",
            "description": "Limit detection to specific technologies. Use exact names as they appear in the dataset (e.g. 'React', 'Next.js', 'Stripe', 'AWS', 'PostgreSQL'). Leave empty to detect all known technologies.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "techCategories": {
            "title": "Technology categories",
            "type": "array",
            "description": "Which categories of technology to look for. Available: frontend, backend, cloud, database, analytics, marketing, payment, devops, security, ai-ml.",
            "default": [
              "frontend",
              "backend",
              "cloud",
              "analytics",
              "devops",
              "payment",
              "security"
            ],
            "items": {
              "type": "string"
            }
          },
          "includeHiringData": {
            "title": "Include hiring data",
            "type": "boolean",
            "description": "Fetch live job postings from Greenhouse, Lever, and Ashby to extract required technologies and hiring velocity. Works in any mode; pair it with 'Output format' = Per Job to focus on jobs.",
            "default": true
          },
          "jobSources": {
            "title": "Job sources",
            "type": "array",
            "description": "Applicant-tracking systems to pull job postings from when 'Include hiring data' is ON. Supported: 'greenhouse', 'lever', 'ashby'.",
            "default": [
              "greenhouse",
              "lever",
              "ashby"
            ],
            "items": {
              "type": "string"
            }
          },
          "maxCompanies": {
            "title": "Max companies (competitor mode)",
            "minimum": 1,
            "maximum": 500,
            "type": "integer",
            "description": "Maximum number of discovered companies to analyze in 'competitorLandscape' mode.",
            "default": 50
          },
          "maxJobsPerCompany": {
            "title": "Max jobs per company",
            "minimum": 1,
            "maximum": 200,
            "type": "integer",
            "description": "Limit on job postings analyzed per company when 'Include hiring data' is ON.",
            "default": 20
          },
          "outputFormat": {
            "title": "Output format",
            "enum": [
              "company",
              "technology",
              "job"
            ],
            "type": "string",
            "description": "How each dataset row is shaped. 'company' = one row per company (lists all detected tech). 'technology' = one row per company-technology pair (default). 'job' = one row per job posting (use with 'Include hiring data').",
            "default": "technology"
          },
          "includeConfidence": {
            "title": "Include detection confidence",
            "type": "boolean",
            "description": "Add a 0–1 confidence score to each detection, based on how many signals (HTML patterns + HTTP headers) matched.",
            "default": true
          },
          "deepScan": {
            "title": "Deep scan (slower)",
            "type": "boolean",
            "description": "Also crawl common subpages (/about, /engineering, /blog, /careers, /api, /developers) and read HTTP response headers, merging any extra technologies found. Slower but broader coverage.",
            "default": false
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Use Apify Proxy for sites that block datacenter IPs."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}