Skip to main content
GET
/
v1
/
technology
/
name
/
{name}
/
domains
Find domains by technology API
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
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

name
string
required

Technology name (URL-encoded, e.g., React, Shopify, Google%20Analytics)

Example:

"Shopify"

Query Parameters

limit
integer
default:100

Number of domains to return (max 1000)

Required range: x <= 1000

Response

Domains using the technology

success
boolean
Example:

true

data
object