Web
Website technology detection API
Fetches a page and fingerprints its technologies (CMS, frameworks, ecommerce, analytics, CDN, JS libraries, server) from response headers + HTML signatures using a built-in ruleset, returning each detection with the evidence that matched. The value-add: messy headers/markup become a clean categorized technology list. Answers 'what is this site built with', 'does this use WordPress/Shopify', 'what analytics does this site run', 'detect the framework behind this URL'.
Price$0.01per request
MethodPOST
Route/v1/web/tech-stack
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
webtech-stackwappalyzercmsframeworkfingerprintbuiltwithtechnologies
API URL
Integration docshttps://x402.hexl.dev/v1/web/tech-stackExample request
{
"url": "https://wordpress.org"
}Example response
{
"url": "https://wordpress.org/",
"count": 3,
"server": "nginx",
"poweredBy": null,
"technologies": [
{
"name": "WordPress",
"category": "cms",
"evidence": "html"
},
{
"name": "jQuery",
"category": "javascript",
"evidence": "html"
},
{
"name": "Nginx",
"category": "server",
"evidence": "header server: nginx"
}
],
"categories": {
"cms": [
"WordPress"
],
"javascript": [
"jQuery"
],
"server": [
"Nginx"
]
}
}Input schema
{
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"examples": [
"https://news.ycombinator.com"
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}