I'm trying to mimick a search I am doing through datascope ui using datascope select api.
It is a bond search for corporate, active, aussie dollar.
I get 2000 records - however when I use Gov/Corp Search through the api - I get like 250 records.
One strange thing I find is that the AssetStatuses have no status for active on the api but do for the UI - somebody else raised this in another question - however it was mentioned that it was the old thompson reuters api rather than refinitiv. I'm calling the Refinitiv api and there seems to be no Active Status.
Also ideally I want callable and non-callable - should I pass null for that rather than true/false.
Why am I getting 250 through the api and over 2000 using the ui.
Payload and screenshot below.
Thanks,
Adam

Request
{
"SearchRequest": {
"AssetStatuses": [],
"CountryCode": null,
"Coupon": null,
"CurrencyCodes": [
"AUD"
],
"Group": {
"Agency": false,
"Government": false,
"Corporate": true,
"Supra": false
},
"MoodyRatingsCodes": [],
"StandardPoorsRatingsCodes": [],
"Callable": false,
"Convertable": false,
"Extendable": false,
"Putable": false,
"Sinkable": false,
"IssueDate": null,
"MaturityDate": null,
"NextPayDate": null,
"Ticker": null,
"IdentifierType": "Ric",
"PreferredIdentifierType": "Isin"
}}
Response Sample - first 2 of 250:
{
"@odata.context": https://selectapi.datascope.refinitiv.com/RestApi/v1/$metadata#Collection(DataScope.Select.Api.Content.ValidatedInstrument),
"value": [
{
"Identifier": "AU00000AZZG9",
"IdentifierType": "Isin",
"Source": "CPT",
"Key": "VjF8MHgwMDAzODYwMDgwYTJjNjYxfDB4MDAwNDA1MDAxY2UzMGJmNXxDUFR8R0NCRHx8fEd8QXxBVUFaWjEwMTM9fA",
"Description": "BNL 10.000 10/30/23 CVT DFTd",
"InstrumentType": "GovCorpBond",
"Status": "Valid"
},
{
"Identifier": "AU00000AZZG9",
"IdentifierType": "Isin",
"Source": "EJV",
"Key": "VjF8MHgwMDAzODYwMDgwYTJjNjYxfDB4MDAxMDJjMGRmZGVlMTMzMXxFSlZ8R0NCRHx8fEd8QXx8R09SUA",
"Description": "BNL 10.000 10/30/23 CVT DFTd",
"InstrumentType": "GovCorpBond",
"Status": "Valid"
},
],
"@odata.nextlink": "https://selectapi.datascope.refinitiv.com/RestApi/v1/Search/GovCorpSearch?$skiptoken='MjUw'"
}