I'm using the Refinitiv Data Platform (RDP) API and wondered how I could convert SEDOLs into RICs. I know that it's possible in Python with that API (e.g.: in CodeBook with the code below), but I want to get the same results in C#. Is that possible? If so: what endpoint should I use?
import refinitiv.dataplatform as rdp rdp.open_desktop_session('DEFAULT_CODE_BOOK_APP_KEY') rdp.convert_symbols( symbols = ['0216238'], from_symbol_type = rdp.SymbolTypes.SEDOL )
Hi @danieluphromes ,
The RDP library uses ‘https://api.refinitiv.com/discovery/search/v1/lookup’ and not the Symbology endpoint.
This is the request message it uses:
{ "View": "SearchAll", "Terms": "0216238", "Scope": "SEDOL", "Select": "RIC", "Filter": "AssetState eq \'AC\'" }
Response:
{ "Matches": { "0216238": { "RIC": "AV.L" } } }