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"
}
}
}Quick lookup of a technology by its exact name (case-insensitive). Returns the technology ID, name, and category. Use this to resolve names to IDs for other endpoints.
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"
}
}
}Is the technology name lookup case-sensitive?
shopify, Shopify, and SHOPIFY all match the same technology. Names with spaces or special characters should be URL-encoded (e.g., Google%20Analytics).What happens if the technology doesn't exist?
"exists": false with a null technology field. You won’t get a 404 error. The endpoint always returns HTTP 200, and you check the exists boolean in the response to determine if a match was found.When should I use this instead of the search endpoint?
GET /v1/technologies) when you need fuzzy matching across names and categories or want to browse available technologies.Was this page helpful?