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

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)

Example:

"React"

Response

Technology lookup result

success
boolean
Example:

true

data
object