Using is websocket Api for RTO. The endpoint is https://api.refinitiv.com/streaming/pricing/v1/?transport=websocket where i send the RIC of the ticker.
For example if the trade for AAPL was executed in Nasdaq then the RIC of this will be AAPL.O but if i am not subscribed to Nasdaq live market data but i am subscribed to NYSE then how do i request data from refinitiv for AAPL in NYSE or AAPL.A? The main issue is converting AAPL.O to AAPL.A, this is not only limiit to Nasdaq to NSYE but from one venue to another.
Our requirements are met by the search Api referenced by the API playground, however our Machine ID for the RTO seems not have the required permissions to access the API. I was wondering if there are any other APIs we can use to get the required data?
The data required by us is:
- A mapping of the tickers to their RICs covering all the exchanges that they are traded in. For example TSLA.O would gives us TSLA.BA, TSLA.OQ ...etc. For all the available exchanges.
- A reference request is:
{
"View": "Quotes",
"Filter": "RicRoot eq 'TSLA' and Currency eq 'USD'",
"Select": "RIC, ExchangeName, ExchangeCode, Currency",
"Top": 100
}
- A mapping of the currency to their delayed exchange RIC, from HKD to "/USDHKD=R":
A reference request is :
It would be great if you could give us a probable solution for this issue.