Icons Taxonomy API
- Betgate Cluster Integration
- Domain
-
Markets description
AmericanFootball AnyOther AustralianFootball Badminton Bandy Baseball Basketball Bowls BeachFootball BeachVolleyball Biathlon Boxing Chess Cricket Curling Darts Entertainment ESport FieldHockey Floorball Football Futsal Golf Handball IceHockey Kabaddi MMA MotorSport Olympics Politics Rugby Snooker Squash TableTennis Tennis UFC Volleyball Waterpolo
Table of Contents
Overview
The Icons Taxonomy API provides access to team/competitor images (logos) used in sports-related products. These icons are delivered via a simple, public HTTP interface optimized for embedding in web and mobile applications.
Endpoints
Base URL
https://taxonomyicons.betgate.dev/
Get Full-Size Competitor Icon
GET /{competitorId}
Example:
GET https://taxonomyicons.betgate.dev/256826
Description:
Fetches the original/full-size image of a competitor (typically a team logo).
Path Parameters:
Parameter |
Type |
Description |
competitorId |
string |
Unique ID of the competitor |
Response:
200: Returns the image in its original format (e.g., image/png, image/jpeg)
403 | 404: No image found for the given competitor ID
Get Resized Competitor Icon (164x164)
GET /{competitorId}-164w
Example:
GET https://taxonomyicons.betgate.dev/74000-164w
Description:
Fetches a resized version of the competitor’s image with a width of 164 pixels. Maintains original aspect ratio. Ideal for UI thumbnails, tiles, and previews.
Path Parameters:
Parameter |
Type |
Description |
competitorId |
string |
Unique ID of the competitor |
Suffix:
The suffix -164w indicates the image should be resized to 164px width.
Response:
200: Returns the image in its original format (e.g., image/png, image/jpeg)
403 | 404: No image found for the given competitor ID