Tournaments
- 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
Tournament JSON description:
{
"id": string, // Tournament string id
"categoryId": string , // parent ategory string id
"name": {
string: string, // key: value map where left side is key is string language id (en, ro, fr, etc.), right side is value - string
},
"timestamp": DateTime // date time with time zone
"dataVersion": int, // version of category with current id, increments when one of category fields are changed
"isInternational": bool, // shows if tournament is international or national championship
"gender": string, // gender of competitors - man, women or none if it mixed
"competitorType": string, // type of competitors - players or teams or mixed (like cybersport for example)
"slug": string, // short name of category for SEO links
"sport": string, // sport string id, "Football" for example
}
Example:
{
"id": "dacd14f5070b43b1b53d0382ff8567c7",
"categoryId": "e1af5cbe212a4c25ace3413818cea243",
"name": {
"ru": "Женщины. WTT Star Contender. Гоа",
"uk": "Жінки. WTT Star Contender. Гоа",
"en": "Women. WTT Star Contender. Goa"
},
"timestamp": "2023-02-27T01:44:46.7622319Z",
"dataVersion": 2,
"isInternational": false,
"gender": "Women",
"competitorType": "Team",
"slug": "women-wtt-star-contender-goa",
"sport": "TableTennis",
}