Skip to main content
GET
/
v1
/
domain
/
{domain}
Get domain technologies API
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"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API key in format tapi_live_[32-char] (live) or tapi_test_[32-char] (test)

Path Parameters

domain
string
required

The domain to look up (e.g., shopify.com)

Example:

"shopify.com"

Response

Technology stack for the domain

success
boolean
Example:

true

data
object