Dear all, for RDP (not Eikon), e.g. https://api.refinitiv.com/data/historical-pricing/v1/views/interday-summaries/VOD.L, do I have any possibility to get a total return timeseries? It is possible for S&P or Bloomberg, is it also possible here?
@3gK7XjR8pD
Thank you for reaching out to us.
Absolutely, we can provide Total Return for stocks.
However, that endpoint (historical-pricing) is used to retrieve historical data of streaming real-time data. If you don't specify the fields parameter, it will return all available fields of that item.
You need to use the DataGrid endpoint (https://api.refinitiv.com/data/datagrid/beta1/) to retrieve Total Return and other fundamental data.
The request message looks like this:
{ "universe": [ "VOD.L" ], "fields": [ "TR.TotalReturn.Date", "TR.TotalReturn" ], "parameters": { "SDate": "2025-10-01", "EDate": "2025-11-12", "Frq": "D" } }
You can try this endpoint through the API Playground. To retrieve other fundamental data, please contact the helpdesk team directly via LSEG Support and ask for TR.xxx fields and parameters that can be used to retrieve the required data.