{
  "openapi": "3.0.1",
  "info": {
    "title": "BuiltWith Scraper | Tech Stacks and Top Sites",
    "description": "BuiltWith scraper for technology stacks and Top Sites rankings. Get every technology detected on any website with category, tags, rank and AI Index, or list the top sites of 40 countries with company name, tech spend, sales revenue and traffic. Build technographic lead lists, no API key needed.",
    "version": "1.0",
    "x-build-id": "Jv24LPPulcbkfKwWL"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/silentflow~builtwith-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-silentflow-builtwith-scraper",
        "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/silentflow~builtwith-scraper/runs": {
      "post": {
        "operationId": "runs-sync-silentflow-builtwith-scraper",
        "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/silentflow~builtwith-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-silentflow-builtwith-scraper",
        "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 to look up",
            "type": "array",
            "description": "The websites whose technology profile you want, one per line: <code>shopify.com</code>, <code>stripe.com</code>, or a full address like <code>https://www.airbnb.com/</code>. Each website becomes one row with every technology BuiltWith detects on it (a large site lists several hundred), its categories, tags and descriptions, the BuiltWith rank, the AI Index and the site age. Profiles are read about ten seconds apart: 10 websites take 2 minutes, 100 take 20. <b>Leave this empty</b> to read the Top Sites ranking of the country below instead.",
            "items": {
              "type": "string"
            }
          },
          "topSitesCountry": {
            "title": "🏆 Top sites country",
            "enum": [
              "Global",
              "United-States",
              "United-Kingdom",
              "Canada",
              "Australia",
              "New-Zealand",
              "Germany",
              "France",
              "Netherlands",
              "Italy",
              "Spain",
              "Mexico",
              "India",
              "Japan",
              "Switzerland",
              "China",
              "Russia",
              "Sweden",
              "Norway",
              "Brazil",
              "Indonesia",
              "Turkey",
              "Saudi-Arabia",
              "Argentina",
              "Poland",
              "Belgium",
              "Thailand",
              "Austria",
              "Israel",
              "Hong-Kong",
              "Denmark",
              "Singapore",
              "Malaysia",
              "South-Korea",
              "Philippines",
              "Pakistan",
              "Chile",
              "Finland",
              "Vietnam",
              "Czech-Republic",
              "Romania"
            ],
            "type": "string",
            "description": "Used when the website list is empty: the run walks BuiltWith's Top Sites ranking of this country, 100 sites per page, up to 2,000 sites per list. Each row carries the rank, domain, company name, country, monthly technology spend, sales revenue for eCommerce sites, social reach, employees and traffic tier."
          },
          "maxItems": {
            "title": "🔢 Max websites",
            "minimum": 1,
            "type": "integer",
            "description": "How many rows to save. With a website list, the first N websites are read. With Top Sites, the ranking is walked in order until N rows: <code>100</code> is one page and takes a few seconds, <code>2000</code> is the whole list of a country.",
            "default": 100
          },
          "ecommerceOnly": {
            "title": "🛒 eCommerce sites only",
            "type": "boolean",
            "description": "On: only the online stores of the country, ranked, with their estimated monthly sales revenue on every row. Off: every kind of site.",
            "default": false
          },
          "includeTechnologies": {
            "title": "🧩 Include the technology stack of each top site",
            "type": "boolean",
            "description": "On: every Top Sites row also carries the full technology list of the site, its categories, AI Index and site age, read from its profile page. Profiles are read about ten seconds apart, so 100 sites take around 20 minutes. Off: the ranking columns only. Websites you look up by name always include their technologies.",
            "default": false
          },
          "debugMode": {
            "title": "🐞 Debug mode",
            "type": "boolean",
            "description": "Adds detailed lines to the run log. Leave it off for normal runs.",
            "default": 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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}