I am trying to get the PrimaryRIC for a large list of ISINs. If I do it one by one I get the correct result (see below).
What I really want is to include multiple ISINs - "Filter": " IssueISIN in ( 'US02079K1079', US0378331005, US88160R1014 etc. ) " - and only show the top results for each ISIN, not the combined.
Endpoint: https://api.refinitiv.com/discovery/searchlight/v1/
REQUEST:
{
"View": "EquityQuotes",
"Filter": "IssueISIN in ('US02079K1079')",
"Select": "RIC, PrimaryRIC, ExchangeCode, IssuerShortName",
"Top": 1
}
RESPONSE:
{
"Total": 93,
"Hits": [
{
"RIC": "GOOG.O",
"PrimaryRIC": "GOOGL.O",
"ExchangeCode": "NSQ",
"IssuerShortName": "Alphabet"
}
]
}
Hope you could help me with this.