curl --request GET \
--url https://api.technologychecker.io/v1/category/{id}/market-share \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"category": {
"id": 203,
"name": "Advertising Networks",
"slug": "advertising-networks",
"priority": 1,
"tech_count": 2318
},
"technologies": [
{
"id": 86,
"name": "DoubleClick.Net",
"domain_count": 5750120,
"market_share": 29.67
}
],
"total_technologies": 5,
"total_domains": 19382458
}
}Get market share data for all technologies within a specific category. Technologies ranked by domain count with percentage share. Useful for competitive analysis and market sizing.
curl --request GET \
--url https://api.technologychecker.io/v1/category/{id}/market-share \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"category": {
"id": 203,
"name": "Advertising Networks",
"slug": "advertising-networks",
"priority": 1,
"tech_count": 2318
},
"technologies": [
{
"id": 86,
"name": "DoubleClick.Net",
"domain_count": 5750120,
"market_share": 29.67
}
],
"total_technologies": 5,
"total_domains": 19382458
}
}How is market share calculated?
(technology_domain_count / total_category_domains) * 100. Technologies are ranked by domain count from highest to lowest.How do I find a category's ID?
GET /v1/technology/{id}/info on any technology in the category — the response includes primary_category_id and category_name. You can also use the technology search endpoint to browse categories and find the right ID.How many technologies does this endpoint return?
limit query parameter (default is 50). The response also includes total_technologies to show how many exist in the category and total_domains for the aggregate domain count across all technologies.API key in format tapi_live_[32-char] (live) or tapi_test_[32-char] (test)
Category ID
203
Number of technologies to return (max 100)
x <= 100Was this page helpful?