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
}
}Get quick statistics for a technology including active and total domain counts. Use the technology ID to retrieve current adoption numbers across 50M+ domains.
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
}
}What's the difference between active_domains and total_domains?
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.How often are technology statistics updated?
Can I get stats for multiple technologies at once?
GET /v1/technology/name/{name} to resolve names to IDs first.Was this page helpful?