Is the historic data API docs up to date?
I am trying the example heres: https://historicdata.betfair.com/#/apidocs
The first example works, so I know I'm setting the SSOID correctly.
But if I try the DownloadListOfFiles example:
curl -X POST http://historicdata.betfair.com/api/DownloadListOfFiles -H 'content-type: application/json' -H 'ssoid: YOUR_TOKEN_HERE' -d '{ "sport":"Horse Racing", "plan":"Basic Plan", "fromDay" : 1, "fromMonth": 3, "fromYear" : 2017, "toDay": 31, "toMonth" : 3, "toYear": 2017, "eventId": null, "eventName": null, "marketTypesCollection": [ "WIN", "PLACE" ], "countriesCollection" : [ "GB", "IE" ], "fileTypeCollection" : [ "M"] }'
I get this error:
<html><head><title>Object moved</title></head><body> <h2>Object moved to <a href="https://historicdata.betfair.com/home/ngErrorRedirect">here</a>.</h2> </body></html>
I Python example code would be greatly appreciated too!



Comment