Tech Stack Detector
Pricing
Pay per event
Tech Stack Detector
Tech Stack Detector fetches a website and analyzes its HTML, scripts, meta tags, and HTTP headers to identify the technologies it uses. It detects 45+ technologies across categories like JavaScript frameworks, CMS platforms, analytics tools, CDN providers, and more.
Pricing
Pay per event
Rating
0.0
(0)
Developer

Stas Persiianenko
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
Detect technologies used on websites -- frameworks, CMS, analytics, CDN, hosting, and more. A lightweight BuiltWith/Wappalyzer alternative.
What does Tech Stack Detector do?
Tech Stack Detector fetches a website and analyzes its HTML, scripts, meta tags, and HTTP headers to identify the technologies it uses. It detects 45+ technologies across categories like JavaScript frameworks, CMS platforms, analytics tools, CDN providers, and more.
Use it for competitive analysis, lead qualification (find companies using specific technologies), security audits, or technology market research. Each detection includes a confidence level, and technologies are grouped by category for easy filtering.
Use cases
- Sales teams -- qualify leads by identifying companies using specific technologies (e.g., find all Shopify stores or WordPress sites)
- Competitive analysts -- discover what frameworks, analytics, and hosting competitors rely on
- Security auditors -- identify outdated or vulnerable technologies across a portfolio of websites
- Market researchers -- survey technology adoption trends across industry verticals
- Developers -- quickly understand the tech stack of any website before starting a project or integration
- Agency teams -- profile client websites to recommend technology improvements or identify compatibility requirements
Why use Tech Stack Detector?
- 45+ technologies detected -- covers frameworks, CMS, analytics, CDN, hosting, CSS frameworks, customer support tools, and more
- Batch processing -- analyze hundreds of websites in a single run
- Confidence scoring -- each detection includes a confidence level (high, medium, low)
- Categorized output -- technologies grouped by category for easy filtering
- Fast and lightweight -- HTTP-only requests, no browser overhead
- Pay-per-event pricing -- cost-effective at scale, starting at $0.002 per URL
Detected technologies
| Category | Technologies |
|---|---|
| JavaScript Framework | React, Next.js, Vue.js, Nuxt.js, Angular, Svelte, Remix, Gatsby, Astro |
| CMS | WordPress, Drupal, Joomla, Ghost, Webflow, Wix, Squarespace, Hugo |
| E-Commerce | Shopify |
| Analytics | Google Analytics, Google Tag Manager, Hotjar, Segment, Mixpanel, Plausible |
| CDN / Hosting | Cloudflare, Vercel, Netlify, AWS, Fastly, Akamai |
| Web Server | Nginx, Apache, IIS |
| CSS Framework | Tailwind CSS, Bootstrap |
| Customer Support | Intercom, Zendesk, Crisp, Drift |
| Marketing | HubSpot, Mailchimp |
| Security | reCAPTCHA, hCaptcha |
Input parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
urls | string[] | Yes | -- | Website URLs to analyze. Domain names without protocol are auto-prefixed with https:// |
Example input
{"urls": ["apify.com", "github.com", "shopify.com"]}
Output example
{"url": "https://apify.com","technologies": [{ "name": "Next.js", "category": "JavaScript Framework", "confidence": "high" },{ "name": "React", "category": "JavaScript Framework", "confidence": "high" },{ "name": "Vercel", "category": "CDN / Hosting", "confidence": "high" }],"categories": {"JavaScript Framework": ["Next.js", "React"],"CDN / Hosting": ["Vercel"]},"server": "Vercel","error": null}
How much does it cost?
| Event | Cost | Description |
|---|---|---|
| Run start | $0.035 | One-time per run |
| Per URL analyzed | $0.002 | Per website analyzed |
Example costs:
- 10 URLs: $0.035 + 10 x $0.002 = $0.055
- 100 URLs: $0.035 + 100 x $0.002 = $0.235
- 1,000 URLs: $0.035 + 1,000 x $0.002 = $2.035
Using the Apify API
Node.js
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: '<YOUR_API_TOKEN>' });const run = await client.actor('automation-lab/tech-stack-detector').call({urls: ['apify.com', 'github.com'],});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(items);
Python
from apify_client import ApifyClientclient = ApifyClient('YOUR_TOKEN')run = client.actor('automation-lab/tech-stack-detector').call(run_input={'urls': ['apify.com', 'github.com'],})items = client.dataset(run['defaultDatasetId']).list_items().itemsfor item in items:print(f'{item["url"]}: {[t["name"] for t in item["technologies"]]}')
Integrations
Tech Stack Detector integrates with your existing workflow through the Apify platform. Connect it to Make (formerly Integromat), Zapier, or n8n to automate technology profiling across lead lists. Export results to Google Sheets for team analysis, send notifications to Slack when a target website changes its tech stack, or use webhooks to enrich CRM records with technology data automatically.
Common integration patterns include:
- Lead enrichment -- trigger a detection run from your CRM whenever a new lead is added, and write the tech stack back to the lead record
- Competitive monitoring -- schedule monthly runs on competitor websites and alert your team in Slack when technology changes are detected
- Market research pipeline -- combine with a web scraping actor to build a list of company websites, then profile their tech stacks in bulk
Tips and best practices
- Use domain names -- you can pass just
apify.cominstead ofhttps://apify.com; the actor auto-prefixes the protocol. - Combine with lead lists -- feed a list of prospect websites to identify companies using a specific technology for targeted outreach.
- Schedule regular runs to track technology changes over time, such as competitors migrating from one framework to another.
- Filter by confidence -- focus on high-confidence detections for reporting, and investigate medium/low confidence results manually.
- Pair with Website Contact Finder -- detect the tech stack first, then extract contact information from matching websites.
FAQ
How does it detect technologies? It analyzes HTML source code, inline scripts, meta tags, HTTP response headers (Server, X-Powered-By), and known file patterns. Each technology has specific signatures that the actor matches against.
Can it detect technologies loaded via JavaScript? It detects technologies referenced in inline scripts and script tags in the HTML source. Technologies loaded entirely via client-side dynamic imports after page load may not be detected, since the actor does not run a browser.
How accurate is the detection? Each detection includes a confidence level. High-confidence detections are based on strong signals like unique HTTP headers or framework-specific HTML attributes. Lower confidence detections are based on heuristic patterns.
How is this different from BuiltWith or Wappalyzer? Tech Stack Detector offers a lightweight, API-first alternative with pay-per-event pricing. You can integrate it directly into your workflows via the Apify API, schedule automated runs, and process results programmatically. There are no monthly subscriptions or per-seat fees.
How many websites can I analyze in one run? There is no hard limit. The actor processes URLs concurrently, so runs with hundreds or thousands of websites complete efficiently. Each URL is billed separately at $0.002.