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, first/last seen dates, and subdomain information. Costs 1 credit per request.
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"
}
]
}
}What does the domain technologies endpoint return?
active_technologies (currently detected on the domain) and historical_technologies (previously detected but no longer active). Each technology includes its name, category, first seen date, last seen date, and the subdomain where it was found.How much does a domain technology lookup cost?
Can I look up subdomains separately?
shopify.com). Technologies detected on subdomains are included in the response with the subdomain field showing where each technology was found. You don’t need to query subdomains individually.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?