Can a person take couple of these xml files and somehow have excel match them up - match for match - comparing /recording odds and their changes? Or is that too much of a headache?
Sportsbook xml feeds
Collapse
X
-
jairoconSBR Sharp
- 05-30-10
- 446
#71Comment -
chachiSBR MVP
- 02-16-07
- 4571
#72prob too much of a headache ... team naming and whatnot varies so muchComment -
jairoconSBR Sharp
- 05-30-10
- 446
#73So do you then write a program for it? Or would MS Access be able to do it? (sorry if it's a stupid proposition - I'm a complete noob to this). Is there some public example of how to make use of these xml streams?Comment -
chachiSBR MVP
- 02-16-07
- 4571
#74total programming job and not really something for a newbie programmer to approach from scratch.
automatic matching off of XML feeds with variance in team names is not an effort for the faint hearted and borderline an art form to get it right.
take the two or three you are interested in, filter out the leagues/sports you dont want, and just cut/paste/sort them by handComment -
FreeFallSBR MVP
- 02-20-08
- 3365
#75total programming job and not really something for a newbie programmer to approach from scratch.
automatic matching off of XML feeds with variance in team names is not an effort for the faint hearted and borderline an art form to get it right.
take the two or three you are interested in, filter out the leagues/sports you dont want, and just cut/paste/sort them by handComment -
chachiSBR MVP
- 02-16-07
- 4571
#76in broad strokes, yes that is the task. auto-matching team names is a bit more of a task than you make it out to be thoughComment -
FlightRestricted User
- 01-28-09
- 1979
#77The programming idiom you require to solve cross site naming discrepancies is termed different depending on language/environment.
In C++ STL, a map container is what you want to map team names between each other.
In C#, a dictionary is perfect for the task.
In Excel, lookup tables would be used, with each row representing a team and each column representing a different translation of that team's name across sites (eg UND, ND, Notre Dame, Notre Dame Fighting Irish, etc etc). Then you simply lock that sheet up read only and make static lookups from another sheet. Did I mention I hate Excel for this type of thing? Anything above simple calculations quickly becomes mess.
Regardless of method, the solution requires programming experience and skill.Comment -
2BdownSBR Sharp
- 12-30-09
- 484
#78nice thread, useful stuff here, thanksComment -
2BdownSBR Sharp
- 12-30-09
- 484
#79SportsInsights.com now provides another way to get real-time line updates. We offer packages that allow you to tap into our platform and receive odds in XML format of any of the sportsbooks we offer on the site. You can also gain access to an XML feed of our comprehensive injury database. Please visit the site or contact us for details.Comment -
FreeFallSBR MVP
- 02-20-08
- 3365
#80The programming idiom you require to solve cross site naming discrepancies is termed different depending on language/environment.
In C++ STL, a map container is what you want to map team names between each other.
In C#, a dictionary is perfect for the task.
In Excel, lookup tables would be used, with each row representing a team and each column representing a different translation of that team's name across sites (eg UND, ND, Notre Dame, Notre Dame Fighting Irish, etc etc). Then you simply lock that sheet up read only and make static lookups from another sheet. Did I mention I hate Excel for this type of thing? Anything above simple calculations quickly becomes mess.
Regardless of method, the solution requires programming experience and skill.Comment -
chachiSBR MVP
- 02-16-07
- 4571
#81that does help freefall, but depending upon the sports involved there are massive differences which a loose-enough regex causes too many false positives, especially in euro football where some may be "man utd", some "manchester united", some "man u", etcComment -
FlightRestricted User
- 01-28-09
- 1979
#82In a scripting language, the concept of a dictionary still applies. Anything that supports key/value pairs. In perl you would use a hash table.
$hash{'key'** = 'value';Comment -
FlightRestricted User
- 01-28-09
- 1979
#83For some reason SBR converts right curly brace to ** ??Comment -
splashSBR Rookie
- 05-25-09
- 38
#84I emailed bookmaker and asked them if they have an xml feed, hahah. Only problem is that I couldn't figure out what some of their abbreviations stand for and support won't tell me.Last edited by splash; 02-08-11, 01:24 PM.Comment -
splashSBR Rookie
- 05-25-09
- 38
#86
voddst= visitor moneyline
hoddst= home moneyline
ovt= over line
ovoddst= over odds
unt= under line
unoddst= under odds
vsprdt= visitor spread
vsprdoddst= visitor spread odds
hsprdt= home spread
hsprdoddst= home spread odds
vspt= ??
vspoddst= ??
hspt= ??
hspoddst= ??
voddsh= visitor decimal moneyline?
hoddsh= home decimal moneyline?
vsprdh= visitor decimal spread odds?
hsprdh= home decimal spread odds?
ovh= over decimal odds?
unh= under decimal odds?
vsph= ??
hsph= ??
voddshr= ??
vsprdhr= ??
ovhr= ??
vsphr= ??
btot= ??
bsprd= ??
bml= ??
haschild= ??
related= ??Comment -
jgilmartinSBR MVP
- 03-31-09
- 1119
#87
The rest of them, though - I don't know. They are either True/False values or (from every game I've gone through so far) blank/"0".
btot / bspread / bml - Clearly referring to a total, spread, and moneyline, but what could the 'b' stand for? So far they've always been 'False' from every game I've looked at.Comment -
jimmythehandSBR Rookie
- 08-11-05
- 13
#88hi guys, i'm from sportspunter.com. We sell xml feeds, and can also provide look-up facilities which will convert any variation of a team or player into a common format.Comment -
rsigleySBR Sharp
- 02-23-08
- 304
#89related = "True" means you can't parlay it
hasChild = "True" means they offer alternate bets (1h, 5i, etc.) for it. sets it up so you can't parlay 1h with fg line
i've never seen a true on bml etc so no idea what it means. i even set it up so if its ever true tto store the info into a database but it hasn't happened since their original domain got seizedComment -
dr_wolfSBR Sharp
- 07-20-10
- 417
#90An example something to run can be shown?Comment -
himeshforexRestricted User
- 05-29-09
- 1414
#91nice publicity it has become for sports punter, my experience with them is crapComment -
FroggerSBR Sharp
- 04-17-10
- 382
#92awesome infoComment -
rushhhRestricted User
- 12-12-12
- 4
#93I would like to know if there is still available odds feeds out there for less than 450€/month like people are selling them.
I am specially interested just for Bwin or Interwetten.
Pinnacle has them for free, which is awesome, but they are very late.Comment -
chachiSBR MVP
- 02-16-07
- 4571
#95interwetten does as well ...Comment -
rushhhRestricted User
- 12-12-12
- 4
#96@Chachi: I wrote to interwetten, but they said they don't offer xml odds feeds. Could you tell me on private how to get them. I was looking bet-at-home would also we awesome. Still waiting for answer from them.
@HUY: Pinnacle doesn't put odds out until market is built from other bookmakers. Moreover, they don't have moneyline for every sport.Comment -
rushhhRestricted User
- 12-12-12
- 4
#97Chachi can you send me your contact(skype) or something, because i can't send you PM. Please. And delete this post when you see it too.
Thanks.Comment -
rushhhRestricted User
- 12-12-12
- 4
#98I found unibet(loads really slow), bet-at-home, nordic-bet odds feeds. I can exchange them for bwin or maybe tipico. I need coverage for one specific bookie sports and only those cover all. Thats why i need one of them so bad.
Thanks in advance.
Best regardsComment -
RonPaul2008SBR Hall of Famer
- 06-08-07
- 6741
#99In DonBest there is a an option for 'private feeds' and you put in a URL. What is a private feed and is it possible to get this for any well known books out there that are not on don best (yeah, I have one in mind)?Last edited by RonPaul2008; 12-15-12, 01:30 PM.Comment -
rdgarzaSBR Rookie
- 09-30-09
- 9
-
jgilmartinSBR MVP
- 03-31-09
- 1119
#101Yes. For example, you could write a PHP script that scrapes a web page and writes the data to a mySQL database. Then you could create a cron job that runs the PHP script automatically at a time interval you set.Comment -
dangerSBR Rookie
- 03-15-09
- 39
#102XML feed issues
The gamebookers XML feed seems to have gone away. Was anyone else using this? Is there a new url? Here is the old one I had.
Also, pinnacle seems to be much more aggressive at blocking IP addresses. I have been doing a partial fetch once/minute for years with no issues, then in the last month I keep getting blocked. Their support has been surprisingly unhelpful and telling me why I am blocked or what the rate limit is.
Is anyone else seeing this? Any keys to not getting rate limited?
Here are other XML feeds I have had good success with
bet-at-home Slots has the greatest selection of casino games from all the popular categories: Video Slots, Classic Slots, Jackpot Games and more!
Any other updates to the list posted two years ago?Comment -
jgilmartinSBR MVP
- 03-31-09
- 1119
#103Are you sure you are being blocked? I have had issues with the Pinny feeds timing out over the last month. This goes for the XML feed as well as the API (which you can make calls to every 5 seconds). Pinny is notorious for server problems.Comment -
dangerSBR Rookie
- 03-15-09
- 39
#104Yes, I have multiple IP addresses in several countries. Once one gets blocked, it stays blocked until I either ask pinnacle to unblock it, or if I stop making requests, it unblocks itself after about a week. It is happening sporadically to all of my IPs, except one which has escaped so far.
This fails on IPs that are being blocked.
telnet xml.pinnaclesports.com 80Comment -
strixeeSBR Sharp
- 05-31-10
- 432
#105Is it possible to get bet365 feed somewhere? Or is becoming an affiliate the only way to obtain it?Comment
SBR Contests
Collapse
Top-Rated US Sportsbooks
Collapse
#1 BetMGM
4.8/5 BetMGM Bonus Code
#2 FanDuel
4.8/5 FanDuel Promo Code
#3 Caesars
4.8/5 Caesars Promo Code
#4 DraftKings
4.7/5 DraftKings Promo Code
#5 Fanatics
#6 bet365
4.7/5 bet365 Bonus Code
#7 Hard Rock
4.1/5 Hard Rock Bet Promo Code
#8 BetRivers
4.1/5 BetRivers Bonus Code