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).
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"
}
}
}Was this page helpful?