BuiltWith charges $295/month. Wappalyzer's API is limited. The Website Tech Detector API identifies frameworks, CMS, analytics, CDN, and hosting from any URL with one request.
Quick Start
curl -X GET "https://website-tech-detector2.p.rapidapi.com/website-tech-detector/detect?url=https://stripe.com" \
-H "X-RapidAPI-Key: YOUR_API_KEY" \
-H "X-RapidAPI-Host: website-tech-detector2.p.rapidapi.com"
Node.js — Competitive Analysis
const axios = require('axios');
async function detectTech(urls) {
const report = [];
for (const url of urls) {
const { data } = await axios.get(
'https://website-tech-detector2.p.rapidapi.com/website-tech-detector/detect',
{
params: { url },
headers: {
'X-RapidAPI-Key': process.env.RAPIDAPI_KEY,
'X-RapidAPI-Host': 'website-tech-detector2.p.rapidapi.com'
}
}
);
report.push({
url,
framework: data.technologies.find(t => t.category.includes('Framework'))?.name || 'Unknown',
analytics: data.technologies.filter(t => t.category === 'Analytics').map(t => t.name),
total: data.technologies.length
});
}
return report;
}
detectTech(['https://shopify.com', 'https://notion.so'])
.then(r => console.table(r));
Use Cases
- Competitive Intelligence — See what tools competitors use
- Sales Prospecting — Target companies using specific tech stacks
- SEO Auditing — Detect analytics and CMS for technical audits
Free tier included. Try the Website Tech Detector API on RapidAPI
Related APIs by Donny Digital
- Google Maps Scraper — Extract local business data
- Apollo Lead Scraper — B2B lead generation
- Email Extractor — Find emails from any website
- DuckDuckGo Search — Privacy-first web search
- Indeed Job Scraper — Job market data
- Website Tech Detector — Competitive tech analysis
Digital Products: Prompt Packs, Notion Templates & More on Gumroad
Top comments (0)