curl --request GET \
--url https://api.technologychecker.io/v1/domain/{domain} \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"domain": "shopify.com",
"active_technologies": [
{
"id": 2,
"name": "Cloudflare",
"category": "CDN",
"first_seen": "2020-05-08 00:00:00",
"last_seen": "2026-01-08 00:00:00",
"subdomain": "SHOPIFY.COM"
}
],
"historical_technologies": [
{
"id": 2,
"name": "Cloudflare",
"category": "CDN",
"first_seen": "2020-05-08 00:00:00",
"last_seen": "2026-01-08 00:00:00",
"subdomain": "SHOPIFY.COM"
}
]
}
}Look up the active and historical technologies detected on any domain. Returns the full technology stack including category information.
curl --request GET \
--url https://api.technologychecker.io/v1/domain/{domain} \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"domain": "shopify.com",
"active_technologies": [
{
"id": 2,
"name": "Cloudflare",
"category": "CDN",
"first_seen": "2020-05-08 00:00:00",
"last_seen": "2026-01-08 00:00:00",
"subdomain": "SHOPIFY.COM"
}
],
"historical_technologies": [
{
"id": 2,
"name": "Cloudflare",
"category": "CDN",
"first_seen": "2020-05-08 00:00:00",
"last_seen": "2026-01-08 00:00:00",
"subdomain": "SHOPIFY.COM"
}
]
}
}API key in format tapi_live_[32-char] (live) or tapi_test_[32-char] (test)
The domain to look up (e.g., shopify.com)
"shopify.com"
Was this page helpful?