Quick Question, I'm just building API Data Access for Betfair's API. I currently setting up all the rules for it. I am aware of the 5000 call limit per hour when placing bets to avoid the extra charges.
I have handled the call weights appropriately, and made sure there is no more than 200 requests per call.
However I am unsure if it is safe to send multiple calls at once to request market data
Do I Have to have a delay (i.e. 25ms between calls)?
Or do they need to be sent synchronously (wait for the data to return)?
Or is it simply ok to hammer the server with as many calls as I need until I have the data I need for this burst of activity?
I would normally send a request with a minimal delay of 25ms as I have read somewhere that more than this would be frowned upon by Betfair as there would be little point as there would be no data from the server anyway.
Any guidance would be appreciated.
I have handled the call weights appropriately, and made sure there is no more than 200 requests per call.
However I am unsure if it is safe to send multiple calls at once to request market data
Do I Have to have a delay (i.e. 25ms between calls)?
Or do they need to be sent synchronously (wait for the data to return)?
Or is it simply ok to hammer the server with as many calls as I need until I have the data I need for this burst of activity?
I would normally send a request with a minimal delay of 25ms as I have read somewhere that more than this would be frowned upon by Betfair as there would be little point as there would be no data from the server anyway.
Any guidance would be appreciated.


Comment