Dear Support,
I am trying to iterate through all the quotes on the ASX using the following query:
https://api.thomsonreuters.com/permid/search?access-token={token}&entityType=quote&q=mic:XASX&start=1&num=100
using batches of 100 quotes and incrementing the start value by 100 for each batch.
The results I am getting looks like:
{ "result": { "quotes": { "entityType": "quotes", "total": 2000, "start": 1, "num": 100, "entities": [ { ...
The issue is that the "total" field appears to be limited to "2000" quotes irrespective of how many quotes are on the exchange (in my case around 2400).
When I use the web interface, I can see the same limitation as well:
Am I missing something?
Regards,
David