Skip to main content
GET
/
v1
/
domain
/
{domain}
/
history
Get domain tech history API
curl --request GET \
  --url https://api.technologychecker.io/v1/domain/{domain}/history \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "domain": "stripe.com",
    "technologies": [
      {
        "id": 2,
        "name": "Cloudflare",
        "category": "CDN",
        "status": "active",
        "first_seen": "2020-05-08 00:00:00",
        "last_seen": "2026-01-08 00:00:00"
      }
    ]
  }
}

Frequently asked questions

The basic lookup (GET /v1/domain/{domain}) splits technologies into separate active and historical arrays. This history endpoint returns a single unified list with a status field (active or removed) for each technology, which makes it easier to track changes over time.
History depth varies by domain. TechnologyChecker’s crawl data goes back up to 20 years for well-established domains. The first_seen and last_seen dates show exactly when each technology was first detected and when it was last confirmed or removed.
Poll this endpoint periodically (e.g., weekly or monthly) and compare the status field across responses. Technologies that change from active to removed mean the domain dropped that tool. New entries with active status show recent adoptions. This is useful for competitive intelligence and churn detection.

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., stripe.com)

Example:

"stripe.com"

Response

Technology history for the domain

success
boolean
Example:

true

data
object