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 sorted by most recently detected. Returns up to 1,000 domains per request.
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
}
}How many domains can I retrieve per request?
limit query parameter. The default is 100. Results are sorted by most recently detected, so you get the freshest data first. Each request costs 1 credit regardless of how many domains are returned.Is the technology name case-sensitive?
React, react, and REACT all return the same results. URL-encode names with spaces or special characters (e.g., Google%20Analytics becomes Google%2520Analytics).What data is returned for each domain?
first_detected date (when the technology was first found), and last_detected date (most recent confirmation). The response also includes the technology’s basic info (ID, name, category) and the total count of matching domains.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?