# Website Tech Stack Detector - Find Any Site's Tech (`gio21/tech-stack-detector`) Actor

Detect 130+ technologies on any website: React, Next.js, Shopify, WordPress, Cloudflare, Stripe, GA4, Meta Pixel, HubSpot, Intercom and more. Get CMS, ecommerce platform, frameworks, analytics, ad pixels, payments, chat, CDN, hosting and server. Fast HTTP analysis, no browser.

- **URL**: https://apify.com/gio21/tech-stack-detector.md
- **Developed by:** [Gio](https://apify.com/gio21) (community)
- **Categories:** Developer tools, Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.25 / 1,000 site analyzeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Website Tech Stack Detector

Find out what any website is built with. Paste a list of URLs and get back every technology detected - CMS, ecommerce platform, JavaScript framework, analytics, ad pixels, payments, live chat, CDN, hosting, web server and more.

Fast HTTP analysis. No browser, no waiting.

### Detects 130+ technologies across 25 categories

- **CMS**: WordPress, Drupal, Joomla, Ghost, Webflow, Wix, Squarespace, Contentful, Sanity, Sitecore, AEM
- **Ecommerce**: Shopify, WooCommerce, Magento, BigCommerce, Salesforce Commerce Cloud, VTEX, PrestaShop, Shopware
- **Frameworks**: React, Next.js, Vue, Nuxt, Angular, Svelte, SvelteKit, Astro, Remix, Gatsby, Alpine, HTMX
- **Analytics**: GA4, Google Tag Manager, Segment, Mixpanel, Amplitude, Hotjar, Clarity, Plausible, Matomo, Heap, FullStory
- **Ad pixels**: Meta Pixel, TikTok, Google Ads, LinkedIn, X, Pinterest, Snap, Reddit, Criteo, Taboola
- **Payments**: Stripe, PayPal, Braintree, Adyen, Klarna, Afterpay, Square, Shop Pay
- **Live chat**: Intercom, Zendesk, Drift, Crisp, Tawk.to, LiveChat, Freshchat, Tidio
- **Marketing**: HubSpot, Klaviyo, Mailchimp, Marketo, Pardot, ActiveCampaign, Braze, Attentive
- **CDN / hosting**: Cloudflare, Fastly, Akamai, CloudFront, Vercel, Netlify, Heroku, S3
- **Servers / languages**: Nginx, Apache, LiteSpeed, IIS, Express, PHP, ASP.NET, Rails, Django, Laravel, Java

### What you get

| Field | Description |
|-------|-------------|
| `url` / `finalUrl` | Requested URL and the URL after redirects |
| `statusCode` | HTTP status |
| `title` / `description` | Page title and meta description |
| `technologies` | Array of `{ name, category, evidence }` |
| `technologyCount` | How many technologies were detected |
| `byCategory` | Technologies grouped by category |
| `cms` / `ecommerce` | Primary CMS and ecommerce platform |
| `frameworks`, `analytics`, `advertising`, `payments`, `liveChat`, `cdn`, `hosting` | Ready-to-use lists |
| `server` / `poweredBy` / `generator` | Raw server fingerprints |

### Input

```json
{
  "urls": ["https://www.shopify.com", "https://vercel.com"],
  "maxItems": 100
}
```

### Use cases

- **Lead generation**: find every site running Shopify, WordPress or Stripe and pitch them
- **Competitive research**: see what your competitors' stacks look like
- **Sales prospecting**: qualify accounts by the tools they already pay for
- **Market sizing**: measure platform adoption across a list of domains
- **Security and compliance**: audit which third-party scripts a site loads

### Notes

- Detection is based on real page signals: HTML markers, script URLs, response headers and cookies. Each finding includes the `evidence` that triggered it.
- Sites that block automated requests may return a non-200 status. Those runs are not charged.

If this Actor helped you, please leave a review on the Apify Store.

# Actor input Schema

## `urls` (type: `array`):

Websites to analyze. One record per URL with every technology detected.

## `maxItems` (type: `integer`):

Maximum number of sites to analyze.

## `proxyConfiguration` (type: `object`):

Optional. Use a proxy if a target site blocks datacenter requests.

## `debug` (type: `boolean`):

Verbose logging.

## Actor input object example

```json
{
  "urls": [
    "https://www.shopify.com"
  ],
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "debug": false
}
```

# Actor output Schema

## `results` (type: `string`):

Scraped records.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "urls": [
        "https://www.shopify.com"
    ],
    "maxItems": 100,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("gio21/tech-stack-detector").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "urls": ["https://www.shopify.com"],
    "maxItems": 100,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("gio21/tech-stack-detector").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "urls": [
    "https://www.shopify.com"
  ],
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call gio21/tech-stack-detector --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=gio21/tech-stack-detector",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/GiBjVtBNE8Dq3mwob/builds/YqVgOQGoUsPzxDRYH/openapi.json
