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 status and dates. Useful for tracking 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"
}
]
}
}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?