I'm trying to get the total amount of money that has been matched on each runner and it always comes back as 0.0 even when the totalMatched of the marketid is > 0.0
This is the call i'm making:
{"jsonrpc": "2.0",
"id": 1,
"method": "SportsAPING/v1.0/listMarketBook",
"params": {
"marketIds": ["1.112349276"],
"priceProjection": {
"exBestOffersOverrides":{"bestPricesDepth":1}
}
}
}
This is the response I'm getting:
{'betDelay': 0,
'bspReconciled': False,
'complete': True,
'crossMatching': True,
'inplay': False,
'isMarketDataDelayed': True,
'marketId': '1.112349276',
'numberOfActiveRunners': 3,
'numberOfRunners': 3,
'numberOfWinners': 1,
'runners': [{'handicap': 0.0,
'selectionId': 47999,
'status': 'ACTIVE',
'totalMatched': 0.0},
{'handicap': 0.0,
'selectionId': 48756,
'status': 'ACTIVE',
'totalMatched': 0.0},
{'handicap': 0.0,
'selectionId': 58805,
'status': 'ACTIVE',
'totalMatched': 0.0}],
'runnersVoidable': False,
'status': 'OPEN',
'totalAvailable': 1115211.12,
'totalMatched': 108536.57,
'version': 667246463}
I found this example in the response of the listMarketBook https://api.developer.betfair.com/se...s-MarketPrices where the totalMatched of the runners = the totalMatched of the marketid... I've tried those parameters in my call and I'm still not seeing any positive results.
I'm looking at 1000 different marketids for each event type and i can't find a single one where the totals add up.
Is it normal that they don't add up? How are they related?
This is the call i'm making:
{"jsonrpc": "2.0",
"id": 1,
"method": "SportsAPING/v1.0/listMarketBook",
"params": {
"marketIds": ["1.112349276"],
"priceProjection": {
"exBestOffersOverrides":{"bestPricesDepth":1}
}
}
}
This is the response I'm getting:
{'betDelay': 0,
'bspReconciled': False,
'complete': True,
'crossMatching': True,
'inplay': False,
'isMarketDataDelayed': True,
'marketId': '1.112349276',
'numberOfActiveRunners': 3,
'numberOfRunners': 3,
'numberOfWinners': 1,
'runners': [{'handicap': 0.0,
'selectionId': 47999,
'status': 'ACTIVE',
'totalMatched': 0.0},
{'handicap': 0.0,
'selectionId': 48756,
'status': 'ACTIVE',
'totalMatched': 0.0},
{'handicap': 0.0,
'selectionId': 58805,
'status': 'ACTIVE',
'totalMatched': 0.0}],
'runnersVoidable': False,
'status': 'OPEN',
'totalAvailable': 1115211.12,
'totalMatched': 108536.57,
'version': 667246463}
I found this example in the response of the listMarketBook https://api.developer.betfair.com/se...s-MarketPrices where the totalMatched of the runners = the totalMatched of the marketid... I've tried those parameters in my call and I'm still not seeing any positive results.
I'm looking at 1000 different marketids for each event type and i can't find a single one where the totals add up.
Is it normal that they don't add up? How are they related?



Comment