~ / Hyperdetect
Detect all technologies used by any website.
You can also query the API directly. It returns JSON.
# Detect technologies for a website
curl "/api/scan?url=railway.com"
Response:
{
"url": "https://railway.com",
"detections": [
{
"name": "Next.js",
"category": "JS Framework",
"confidence": "high",
"method": "html"
},
...
],
"infrastructure": { ... },
"robots": { ... },
"sitemap": { ... }
}