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"
      }
    ]
  }
}

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