{
  "openapi": "3.0.1",
  "info": {
    "title": "Tech Stack Detector",
    "description": "Find out what any website runs on: CMS, e-commerce platform, framework, analytics, ad pixels, payments, hosting, CRM and chat — 220 signatures — plus the e-mails, phones and social profiles from the same page, in one row per website.",
    "version": "0.0",
    "x-build-id": "OIhU1UKQtg6CgMDfE"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/lergassy~tech-stack-detector/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-lergassy-tech-stack-detector",
        "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/lergassy~tech-stack-detector/runs": {
      "post": {
        "operationId": "runs-sync-lergassy-tech-stack-detector",
        "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/lergassy~tech-stack-detector/run-sync": {
      "post": {
        "operationId": "run-sync-lergassy-tech-stack-detector",
        "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": {
          "domains": {
            "title": "🌐 Websites",
            "type": "array",
            "description": "Domains or full URLs to look up — <b>shopify.com</b>, <b>https://gymshark.com</b>. One row comes back per website.",
            "default": [
              "shopify.com",
              "gymshark.com",
              "notion.so"
            ],
            "items": {
              "type": "string"
            }
          },
          "startUrls": {
            "title": "🔗 Websites as a URL list",
            "type": "array",
            "description": "The same thing from a file or a Google Sheet, for long lists.",
            "default": [],
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "categoriesFilter": {
            "title": "🗂️ Only these categories",
            "type": "array",
            "description": "Leave empty for everything the site uses. Pick a few to keep the rows narrow — for example only e-commerce and payments.",
            "items": {
              "type": "string",
              "enum": [
                "ab_testing",
                "ads_pixel",
                "analytics",
                "booking",
                "call_tracking",
                "cdn",
                "cdp",
                "chat",
                "cms",
                "consent",
                "crm",
                "ecommerce",
                "email_marketing",
                "fonts",
                "framework",
                "hosting",
                "infra",
                "js_library",
                "library",
                "marketing",
                "media",
                "monitoring",
                "page_builder",
                "payments",
                "performance",
                "push",
                "reviews",
                "search",
                "security",
                "seo",
                "server",
                "tag_manager",
                "video"
              ],
              "enumTitles": [
                "A/B testing",
                "Advertising pixels",
                "Analytics",
                "Booking & scheduling",
                "Call tracking",
                "CDN",
                "Customer data platforms",
                "Live chat",
                "CMS",
                "Cookie consent",
                "CRM",
                "E-commerce",
                "E-mail marketing",
                "Fonts",
                "JS frameworks",
                "Hosting",
                "Infrastructure",
                "JS libraries",
                "Front-end libraries",
                "Marketing automation",
                "Media & images",
                "Monitoring",
                "Page builders",
                "Payments",
                "Performance",
                "Push notifications",
                "Reviews",
                "Site search",
                "Security & captcha",
                "SEO plugins",
                "Web server",
                "Tag managers",
                "Video"
              ]
            },
            "default": []
          },
          "mustUse": {
            "title": "✅ Keep only sites that use",
            "type": "array",
            "description": "Technology names, matched loosely: <b>shopify</b>, <b>klaviyo</b>. A site must use all of them to be delivered — and a site that is filtered out is not charged.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "mustNotUse": {
            "title": "🚫 Drop sites that use",
            "type": "array",
            "description": "The opposite: skip anything already running these. <b>hubspot</b>, <b>intercom</b> — the classic way to find prospects who have not bought your competitor yet.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "includeContacts": {
            "title": "📇 Add contacts from the same page",
            "type": "boolean",
            "description": "E-mails, tel: numbers and social profiles found on the home page, in the same row as the technologies. Free — it is the page we already fetched.",
            "default": true
          },
          "includeSignals": {
            "title": "🏷️ Add title, description and server",
            "type": "boolean",
            "description": "Page title, meta description, generator tag, server and x-powered-by headers.",
            "default": true
          },
          "useProxyWhenBlocked": {
            "title": "🛡️ Retry blocked sites through a proxy",
            "type": "boolean",
            "description": "Most sites answer a direct request. The ones that refuse are retried from residential addresses, which lifted coverage from 88% to 92% in testing. Turn it off for the cheapest, fastest run.",
            "default": true
          },
          "concurrency": {
            "title": "Parallel sites",
            "minimum": 1,
            "maximum": 30,
            "type": "integer",
            "description": "How many websites to read at the same time.",
            "default": 10
          },
          "maxItems": {
            "title": "Maximum rows per run",
            "minimum": 1,
            "type": "integer",
            "description": "A hard ceiling on what one run delivers and bills.",
            "default": 10000
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Used only for sites that refuse a direct request.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ]
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}