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"
}
]
}
}Get the full technology history for a domain, including removed technologies with active/removed status and dates. Track technology adoption and removal over time.
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"
}
]
}
}What's the difference between this endpoint and the basic domain 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.How far back does domain technology history go?
first_seen and last_seen dates show exactly when each technology was first detected and when it was last confirmed or removed.How can I use this endpoint to track technology changes?
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.API key in format tapi_live_[32-char] (live) or tapi_test_[32-char] (test)
The domain to look up (e.g., stripe.com)
"stripe.com"
Was this page helpful?