Skip to main content
GET
/
v1
/
technology
/
{id}
/
stats
Technology stats API
curl --request GET \
  --url https://api.technologychecker.io/v1/technology/{id}/stats \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": 268,
    "name": "React",
    "category": "JavaScript Frameworks",
    "active_domains": 4742704,
    "total_domains": 4750194
  }
}

Frequently asked questions

active_domains counts domains where the technology is currently detected. total_domains includes both current and historical detections — every domain that has used the technology at any point. The gap between them shows how many domains have dropped the technology over time.
Statistics reflect TechnologyChecker’s latest crawl data across the 50M+ domain database. Counts update continuously as the crawler re-scans domains. For the most current snapshot of any technology’s adoption, this endpoint provides real-time aggregated numbers.
Not with this endpoint — it returns stats for one technology per request (1 credit each). To compare multiple technologies, make separate requests for each technology ID. Use GET /v1/technology/name/{name} to resolve names to IDs first.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer
required

Technology ID

Example:

268

Response

Technology statistics

success
boolean
Example:

true

data
object