curl --request GET \
--url https://api.technologychecker.io/v1/technology/name/{name}/domains \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"technology": {
"id": 268,
"name": "React",
"category": "JavaScript Frameworks"
},
"domains": [
{
"domain": "gymshark.com",
"first_detected": "2018-03-08 00:00:00",
"last_detected": "2026-01-08 00:00:00"
}
],
"count": 3
}
}Get the top domains using a specific technology, identified by name. Results are sorted by most recently detected.
curl --request GET \
--url https://api.technologychecker.io/v1/technology/name/{name}/domains \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"technology": {
"id": 268,
"name": "React",
"category": "JavaScript Frameworks"
},
"domains": [
{
"domain": "gymshark.com",
"first_detected": "2018-03-08 00:00:00",
"last_detected": "2026-01-08 00:00:00"
}
],
"count": 3
}
}API key in format tapi_live_[32-char] (live) or tapi_test_[32-char] (test)
Technology name (URL-encoded, e.g., React, Shopify, Google%20Analytics)
"Shopify"
Number of domains to return (max 1000)
x <= 1000Was this page helpful?