...
NAME | DESCRIPTION |
---|---|
timestamp | The date & time of when the message was created (UTC) |
event_id | The ID of the event (Match or Outright) |
event_name | The name of the event (only for Outright) |
expiry_date | The next expiration date of the event (Not always available) |
scheduled_date | The date of when the event will take place |
sport id | The ID of the sport |
sport name | The name of the sport |
category id | The ID of the category |
category name | The name of the category |
tournament id | The ID of the tournament |
tournament name | The name of the tournament |
market id | The ID of the market |
market name | The name of the market (only for outright) |
outcome id | The ID of the outcome (only for outright) |
outcome name | The name of the outcome (only for outright) |
competitor id | The ID of the competitor (only for match) |
competitor name | The name of the competitor (only for match) |
competitor type | The position of the competitor (this should be used to determine home and away) |
reference id | The mapping id for a particular FeedProvider/Bookmaker |
reference name | The name of the FeedProvider/Bookmaker mapping id |
reference type | The entity of the FeedProvider/Bookmaker mapping id |
...
Code Block |
---|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <fixtures_fixture product_id="1" timestamp="16958894370001701966942002"> <fixture event_id="match:150926" <fixture scheduled_date="2023-1012-05T1308T02:00:00+00:00" event_id="match:353514"> <sport id="10011002" name="SoccerBasketball"/> <category id="179" name="EnglandUSA"/> <tournament id="1167" name="Premier LeagueNBA"/> <competitors> <competitor id="421394" name="ArsenalLos Angeles FCLakers" type="1"> <reference_ids> <reference_id <reference id="250390953427" name="betradar" /> </reference_ids> </competitor> <competitor id="171527" name="ManchesterNew Orleans CityPelicans" type="2"> <reference_ids> <reference_id <reference id="250390935539" name="betradar"/> </reference_ids> </competitor> </competitors> <reference_ids> <referece_id <reference id="145979419" name="betradar" type="SportMatch"/> <referece_id <reference id="1132" name="betradar" type="CategoryTournament"/> <referece_id <reference id="12" name="betradar" type="TournamentSport"/> <referece_id <reference id="3777620515" name="betradar" type="MatchCategory"/> </reference_ids> </fixture> </fixtures_fixture> |
...
Code Block |
---|
<?xml version="1.0" encoding="UTF-8"?> <fixtures_fixture product_id="5" timestamp="1695889437000"> <fixture event_id="outright:131728" event_name="Group 1 Winner" expiry_date="2023-10-03T13:00:00+00:00" scheduled_date="2023-10-05T13:00:00+00:00"> <sport id="10040" name="Formula 1"/> <category id="20" name="Brazil"/> <tournament id="17" name="Group 1 Winner"/> <market id="101" name="Short Term Winner"> <outcomes> <outcome id="40000000" name="Verstappen, Max"/> <outcome id="40000001" name="Leclerc, Charles"/> <outcome id="40000002" name="Perez, Sergio"/> <outcome id="40000004" name="Sainz Jr, Carlos"/> </outcomes> </market> </fixture> </fixtures_fixture> |
...