Skip to main content
POST
/
v1
/
technologies
/
lookup
Batch lookup technologies API
curl --request POST \
  --url https://api.technologychecker.io/v1/technologies/lookup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "names": [
    "React",
    "Shopify",
    "NonExistentTech"
  ]
}
'
{
  "success": true,
  "data": {
    "found": [
      {
        "id": 268,
        "name": "React",
        "category": "JavaScript Frameworks"
      }
    ],
    "not_found": [
      "NonExistentTech"
    ],
    "found_count": 2,
    "not_found_count": 1
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
names
string[]
required

Array of technology names to look up (max 100)

Maximum array length: 100
Example:
["React", "Shopify", "NonExistentTech"]

Response

Batch lookup results

success
boolean
Example:

true

data
object