Hi,
I am using
https://api.refinitiv.com/discovery/search/v1/explore
my query:
{
"View": "Entities",
"Filter": "ContributorCode eq 'TWEB'",
"Select": "RIC",
"Top": 10000
}
the number of available RICs are more than 10k (which is a maximum value for TOP)
There is a parameter 'Skip' that allows to skip first records. I assumed this is the one to use to get further results, .e.g. 10000-20000, 20000-30000, etc
Using something like
{
"View": "Entities",
"Filter": "ContributorCode eq 'TWEB'",
"Select": "RIC",
"Skip": 10000
"Top": 5000
}
however, I get an error
"message": "Invalid result window: (top + skip) must not exceed 10,000",
Wondering, how can I get records further than 10k?
Thanks,
Sergei