82+ Technologies
Detects CMS platforms, JS frameworks, analytics, CDN, hosting, e-commerce, and more across 19 categories.
82+ technologies. 5 signal types. Confidence scores.
Give it a URL and get back detected technologies with categories, confidence scores, and metadata. Identifies CMS platforms, JavaScript frameworks, analytics tools, CDN providers, hosting platforms, and more.
curl --request POST \
--url "https://website-technology\
-detector-pro.p.rapidapi.com/v1/detect" \
--header "Content-Type: application/json" \
--header "X-RapidAPI-Key: YOUR_KEY" \
--header "X-RapidAPI-Host: website-technology\
-detector-pro.p.rapidapi.com" \
--data '{"url":"https://example.com"}'{
"url": "https://example.com",
"count": 3,
"technologies": [
{
"name": "Cloudflare",
"category": "CDN",
"confidence": 85,
"signals": ["headers", "cookies"]
},
...
]
}Detects CMS platforms, JS frameworks, analytics, CDN, hosting, e-commerce, and more across 19 categories.
Analyzes HTTP headers, meta tags, script/link sources, HTML patterns, and cookies for comprehensive detection.
Weighted 0–100 scoring based on number and type of matched signals for each detected technology.
Automatically detects implied technologies — WordPress detection also reports PHP and MySQL.
Detect up to 10 URLs per request with concurrent processing for high-volume workflows.
From CMS and JS frameworks to payments, live chat, fonts, SEO tools, and security solutions.
Qualify leads by their tech stack — find companies using Shopify, WordPress, or any target platform.
Understand competitor technology choices across CMS, analytics, CDN, and hosting providers.
Identify potential clients using outdated or specific platforms to pitch migration services.
Discover technologies in use for vulnerability assessment and attack surface mapping.
Detect technology stacks via simple POST requests. Each response includes detected technologies with categories, confidence scores, and matched signals.
| Method | Path | Description |
|---|---|---|
POST | /v1/detect | Detect tech stack for a single URL |
POST | /v1/detect/batch | Detect tech stack for up to 10 URLs |
GET | /v1/technologies | List all 82 detectable technologies (no auth) |
GET | /v1/health | Service health check (no auth) |
| Signal | Weight |
|---|---|
| HTTP Headers | +30 |
| Meta Tags | +25 |
| Script/Link Sources | +25 |
| HTML Patterns | +20 |
| Cookies | +15 |
| Implied | 50 (fixed) |
| Max | 100 |
| Category | Examples |
|---|---|
| CMS | WordPress, Shopify, Wix, Squarespace, Drupal, Joomla |
| JS Frameworks | React, Next.js, Vue.js, Angular, Svelte, Astro |
| Analytics | Google Analytics, Hotjar, Mixpanel, Plausible, PostHog |
| CDN | Cloudflare, AWS CloudFront, Fastly, Akamai |
| Hosting / PaaS | Vercel, Netlify, Heroku, AWS, Google Cloud |
| E-commerce | WooCommerce, BigCommerce, Magento |
| Web Servers | Nginx, Apache, LiteSpeed, Caddy |
| Languages | PHP, Python, Ruby, Node.js, Java, ASP.NET |
| CSS Frameworks | Tailwind CSS, Bootstrap, Material UI |
| And more… | Payments, live chat, tag managers, fonts, SEO, security |
curl --request POST \
--url "https://website-technology\
-detector-pro.p.rapidapi.com/v1/detect" \
--header "Content-Type: application/json" \
--header "X-RapidAPI-Key: YOUR_KEY" \
--header "X-RapidAPI-Host: website-technology\
-detector-pro.p.rapidapi.com" \
--data '{"url":"https://example.com"}'{
"url": "https://example.com",
"count": 3,
"technologies": [
{
"name": "Cloudflare",
"category": "CDN",
"confidence": 85,
"signals": ["headers", "cookies"]
},
{
"name": "Nginx",
"category": "Web Server",
"confidence": 60,
"signals": ["headers"]
},
{
"name": "React",
"category": "JS Framework",
"confidence": 75,
"signals": ["scripts", "html"]
}
]
}curl --request POST \
--url "https://website-technology\
-detector-pro.p.rapidapi.com\
/v1/detect/batch" \
--header "Content-Type: application/json" \
--header "X-RapidAPI-Key: YOUR_KEY" \
--header "X-RapidAPI-Host: website-technology\
-detector-pro.p.rapidapi.com" \
--data '{
"urls": [
"https://shopify.com",
"https://vercel.com"
]
}'{
"results": [
{
"url": "https://shopify.com",
"count": 5,
"technologies": [
{
"name": "Shopify",
"category": "CMS",
"confidence": 95
},
...
]
},
{
"url": "https://vercel.com",
"count": 4,
"technologies": [
{
"name": "Next.js",
"category": "JS Framework",
"confidence": 90
},
...
]
}
]
}/v1/detect with {"url":"..."} or to /v1/detect/batch with {"urls":[...]}.GET /v1/technologies to list all 82 detectable technologies and their categories.Try the Website Technology Detector API on RapidAPI or reach out for enterprise access.