{
  "openapi": "3.0.1",
  "info": {
    "title": "Technology Lookup – Website Tech Stack & Companies Using X",
    "description": "Website technology checker with active-use verification: CMS, ecommerce, analytics, pixels, CRM, marketing automation, chat, payments, hosting, email and DNS-verified SaaS, with evidence per technology. Reverse mode: companies confirmed using a technology. BuiltWith alternative, MCP-ready.",
    "version": "0.1",
    "x-build-id": "8Cc6ZqrZ7OgqOT7xz"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/inovaflow~technology-lookup/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-inovaflow-technology-lookup",
        "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/inovaflow~technology-lookup/runs": {
      "post": {
        "operationId": "runs-sync-inovaflow-technology-lookup",
        "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/inovaflow~technology-lookup/run-sync": {
      "post": {
        "operationId": "run-sync-inovaflow-technology-lookup",
        "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": "Domains or URLs (\"acme.com\", \"https://www.acme.com/pricing\"). One row per website with its full tech stack. Also accepted as `urls`, `websites`, `startUrls` or a comma-separated `url` string.",
            "items": {
              "type": "string"
            }
          },
          "technology": {
            "title": "Technology to find (reverse mode)",
            "type": "string",
            "description": "Optional. A technology name or vendor domain (\"HubSpot\", \"Shopify\", \"Intercom\", \"lemlist.com\"). When set, the run checks every website above and returns only the companies CONFIRMED using it — with the evidence. Leave empty to get the full tech stack of each website."
          },
          "discoverQueries": {
            "title": "Discover companies to check (reverse mode)",
            "type": "array",
            "description": "Optional, reverse mode only. Instead of a website list, discover companies by business search — e.g. \"dental clinics\", \"marketing agencies\" — together with a location below. The discovered websites are then checked for the technology.",
            "items": {
              "type": "string"
            }
          },
          "discoverLocation": {
            "title": "Discovery location",
            "type": "string",
            "description": "City, region or country for the discovery search (e.g. \"Austin, TX\", \"Berlin\")."
          },
          "maxDomains": {
            "title": "Max websites",
            "minimum": 1,
            "maximum": 5000,
            "type": "integer",
            "description": "Upper bound on websites checked in one run.",
            "default": 500
          },
          "categories": {
            "title": "Only these categories",
            "type": "array",
            "description": "Optional. Keep only technologies in these categories (all when empty).",
            "items": {
              "type": "string",
              "enum": [
                "cms",
                "websiteBuilder",
                "ecommerce",
                "ecommerceApps",
                "analytics",
                "sessionReplay",
                "tagManagers",
                "advertising",
                "crm",
                "marketingAutomation",
                "abm",
                "cdp",
                "emailMarketing",
                "emailProvider",
                "chat",
                "support",
                "scheduling",
                "forms",
                "abTesting",
                "payments",
                "subscriptions",
                "hosting",
                "cdn",
                "dnsProvider",
                "security",
                "frameworks",
                "consent",
                "video",
                "search",
                "reviews",
                "saasVerified",
                "other"
              ],
              "enumTitles": [
                "CMS",
                "Website builder",
                "Ecommerce platform",
                "Ecommerce apps",
                "Analytics",
                "Session replay / heatmaps",
                "Tag managers",
                "Advertising & pixels",
                "CRM",
                "Marketing automation",
                "ABM / visitor identification",
                "Customer data platform",
                "Email marketing / ESP",
                "Email provider (MX)",
                "Live chat / chatbot",
                "Help desk / support",
                "Scheduling",
                "Forms & surveys",
                "A/B testing & personalization",
                "Payments",
                "Subscriptions & billing",
                "Hosting",
                "CDN",
                "DNS provider",
                "Security / bot protection",
                "Frameworks & languages",
                "Cookie consent",
                "Video",
                "Site search",
                "Reviews & social proof",
                "SaaS verified via DNS",
                "Other"
              ]
            }
          },
          "verifyActiveUse": {
            "title": "Verify active use",
            "type": "boolean",
            "description": "Confirm each detected technology is actually live (vendor resource for the site's own id served, endpoint answers, script served) instead of trusting a leftover snippet. Recommended.",
            "default": true
          },
          "fetchGtmContainer": {
            "title": "Read the live Google Tag Manager container",
            "type": "boolean",
            "description": "Fetch the site's GTM container and report the tags it loads (pixels, chat, ABM, analytics) that never appear in the HTML.",
            "default": true
          },
          "checkDns": {
            "title": "Check DNS",
            "type": "boolean",
            "description": "Read MX, SPF, CNAME, NS and verification records: email provider, email marketing stack, hosting, and SaaS the company is a verified customer of.",
            "default": true
          },
          "trackChanges": {
            "title": "Track changes between runs",
            "type": "boolean",
            "description": "Remember each website's stack in a named key-value store on your account so every run reports first/last seen per technology and what was added or removed since the previous check.",
            "default": true
          },
          "historyStoreName": {
            "title": "History store name",
            "type": "string",
            "description": "Name of the key-value store that keeps the history (change it to keep separate watchlists apart).",
            "default": "technology-lookup-history"
          },
          "includeNonMatches": {
            "title": "Reverse mode: include non-matching websites",
            "type": "boolean",
            "description": "Also output websites that do NOT use the technology (with their full stack, `usesTechnology: false`).",
            "default": false
          },
          "minConfidence": {
            "title": "Minimum confidence",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Drop technologies below this confidence (0–100). Pattern-only hits score 75, dead snippets 40, implied technologies 60.",
            "default": 50
          },
          "maxConcurrency": {
            "title": "Parallel websites",
            "minimum": 1,
            "maximum": 30,
            "type": "integer",
            "description": "How many websites are analyzed at once.",
            "default": 10
          },
          "requestTimeoutSecs": {
            "title": "Request timeout (seconds)",
            "minimum": 5,
            "maximum": 60,
            "type": "integer",
            "description": "Per-request timeout for fetching a website.",
            "default": 20
          },
          "maxVerifyFetches": {
            "title": "Max verification requests per website",
            "minimum": 0,
            "maximum": 25,
            "type": "integer",
            "description": "Cap on the extra requests used to verify technologies on one website.",
            "default": 8
          },
          "proxyConfiguration": {
            "title": "Proxy",
            "type": "object",
            "description": "Optional. Requests go direct by default and fall back to Apify's datacenter proxy automatically when a website challenges the platform IP. Set a proxy here (e.g. residential) only for lists of websites that block datacenter traffic.",
            "default": {
              "useApifyProxy": false
            }
          },
          "apifyMcpConnector": {
            "title": "Run company discovery under another Apify account (MCP connector)",
            "type": "string",
            "description": "Optional. Connect an Apify MCP connector (Console → Settings → Integrations → MCP Connectors, server URL https://mcp.apify.com) and the reverse-mode company discovery runs under THAT account. Leave empty to run discovery on this account."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}