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 are ranked by domain count with percentage share.
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
}
}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?