curl --request GET \
--url https://api.technologychecker.io/v1/technology/{id}/info \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"id": 268,
"name": "React",
"description": "React is an open-source JavaScript library for building user interfaces or UI components.",
"website": "https://reactjs.org",
"icon": "https://logo.technologychecker.io/technology-logos/React.svg",
"primary_category_id": 601,
"primary_group_id": 6,
"category_name": "JavaScript Frameworks",
"group_name": "Development"
}
}Get extended details for a technology including description, official website, icon URL, and group information. Use the technology ID from a name lookup.
curl --request GET \
--url https://api.technologychecker.io/v1/technology/{id}/info \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"id": 268,
"name": "React",
"description": "React is an open-source JavaScript library for building user interfaces or UI components.",
"website": "https://reactjs.org",
"icon": "https://logo.technologychecker.io/technology-logos/React.svg",
"primary_category_id": 601,
"primary_group_id": 6,
"category_name": "JavaScript Frameworks",
"group_name": "Development"
}
}How do I find a technology's ID?
GET /v1/technology/name/{name} to look up any technology by name and get its ID. For example, searching for “React” returns ID 268. The name lookup is case-insensitive and costs 1 credit.What extra data does this return compared to the basic name lookup?
GET /v1/technology/name/{name}) only returns the ID, name, and category.Does this endpoint return domain counts?
GET /v1/technology/{id}/stats. For monthly usage trends over time, use GET /v1/technology/{id}/history. This endpoint focuses on metadata about the technology itself.Was this page helpful?