Authentication
Send the API key in the x-api-key header on protected endpoints.
x-api-key: <your-api-key>
Scan any public website and get back the technologies the detector finds. This page is safe to share with anyone who needs to call the API.
Send the API key in the x-api-key header on protected endpoints.
x-api-key: <your-api-key>
curl https://ryszards-mac-mini.tail8a9cf4.ts.net/health
curl -X POST https://ryszards-mac-mini.tail8a9cf4.ts.net/analyze \
-H "content-type: application/json" \
-H "x-api-key: <your-api-key>" \
-d '{"url":"https://www.shopify.com","timeout_seconds":60}'
{
"url": "https://www.shopify.com",
"timeout_seconds": 60
}
url is required and must be a valid public HTTP or HTTPS URL.timeout_seconds is optional and must be between 5 and 180.{
"url": "https://www.shopify.com",
"scan_type": "full",
"scanner": "browser_deep_scan",
"technologies": [
{
"name": "Shopify",
"version": null,
"confidence": 100,
"categories": ["Ecommerce"],
"groups": [],
"source": "browser_deep_scan"
}
],
"raw": {}
}
401: missing or invalid API key400: invalid payload or invalid URL502: scan failed upstream