{
  "openapi": "3.0.1",
  "info": {
    "title": "Tech Stack Detector — BuiltWith & Wappalyzer Alternative",
    "description": "Drop-in for nexgendata/wappalyzer-replacement at 1/50th the price. 275+ technologies: CMS, ecommerce, JS frameworks, analytics, ad pixels, payments, CDN, hosting, chat, reviews, consent. Every detection names the header, cookie or script it matched. One row per domain; no data, no charge.",
    "version": "1.0",
    "x-build-id": "2XMa60am7YnXnph2H"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/diopside~tech-stack-detector/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-diopside-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/diopside~tech-stack-detector/runs": {
      "post": {
        "operationId": "runs-sync-diopside-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/diopside~tech-stack-detector/run-sync": {
      "post": {
        "operationId": "run-sync-diopside-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": {
          "urls": {
            "title": "Websites to analyze",
            "type": "array",
            "description": "One or more websites. Accepts bare hosts ('stripe.com') or full URLs ('https://stripe.com/pricing') — the scheme is added when it is missing. Also accepted under the aliases `startUrls`, `domains`, `websites` and `targetUrls`, so input built for another tech-stack actor works unchanged.",
            "default": [
              "stripe.com",
              "allbirds.com",
              "wordpress.org"
            ],
            "items": {
              "type": "string"
            }
          },
          "startUrls": {
            "title": "Start URLs (alias)",
            "type": "array",
            "description": "Alias of `urls`. Accepts plain strings or `{ \"url\": \"...\" }` objects, so a Website Content Crawler-style input works here too.",
            "default": [],
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "domains": {
            "title": "Domains (alias)",
            "type": "array",
            "description": "Alias of `urls`, for bare domain lists exported from a CRM.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "categories_filter": {
            "title": "Filter by technology categories",
            "type": "array",
            "description": "Only return technologies in these categories. Examples: 'CMS', 'Ecommerce', 'Analytics', 'CDN', 'JavaScript Frameworks', 'Payment Processors', 'Marketing Automation', 'Security'. Matching ignores case, spaces and dashes, so 'E-Commerce' and 'ecommerce' both work. Leave empty for everything.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "include_confidence": {
            "title": "Include confidence scores",
            "type": "boolean",
            "description": "Each detected technology carries a 0–100 confidence score. A response header scores 100, a cookie or meta generator 95, a script the page loads 90, raw HTML 85, robots.txt 80, and a technology that was only implied by another 60.",
            "default": true
          },
          "include_versions": {
            "title": "Extract version numbers",
            "type": "boolean",
            "description": "Parse version numbers out of matched headers, script URLs and meta generator tags — 'nginx/1.24.0', '/jquery-3.7.1.min.js', 'WordPress 6.5'. `version` is null when no reliable signal is present; it is never guessed.",
            "default": true
          },
          "timeout_seconds": {
            "title": "HTTP timeout (seconds)",
            "minimum": 3,
            "maximum": 60,
            "type": "integer",
            "description": "Per-request timeout. Raise it for slow sites; lower it to cut short the dead domains in a big list.",
            "default": 15
          },
          "checkRobots": {
            "title": "Also read robots.txt",
            "type": "boolean",
            "description": "Fetch /robots.txt as a second, cheap signal. It confirms CMS platforms whose markup has been themed away (Disallow: /wp-admin/, Shopify's /a/downloads/-/) and fills the `sitemap_urls` field. Adds one small request per domain.",
            "default": true
          },
          "maxConcurrency": {
            "title": "Parallel requests",
            "minimum": 1,
            "maximum": 25,
            "type": "integer",
            "description": "How many websites to analyze at once. Each one is a different host, so this is parallelism across sites, not pressure on any single site.",
            "default": 8
          },
          "maxBytesPerPage": {
            "title": "Max bytes read per page",
            "minimum": 20000,
            "maximum": 3000000,
            "type": "integer",
            "description": "Stop downloading a homepage after this many bytes. Fingerprints live in the head and the first screens of markup, so the default reads enough of a 1.3 MB homepage without paying for the rest. Raise it if a site puts its scripts at the very bottom of a huge document.",
            "default": 400000
          },
          "maxItems": {
            "title": "Max websites",
            "minimum": 1,
            "type": "integer",
            "description": "Hard cap on how many of the supplied websites to analyze. Leave empty for all of them."
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Optional. This actor reads public homepages with a real Chrome TLS fingerprint and does not need a proxy for ordinary sites — it is measured working with the proxy off. Turn the Apify proxy on if you are scanning thousands of domains, or if a target rate-limits the platform's IP range.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}