Query,
I wish to create a python script to download sovereign ratings at a given date for all available sovereigns data. Is there an python API for this?
I am not able to find RIC for sovereigns, for example take United States.
We have shared the sample script
import refinitiv.data as rdrd.open_session()df = rd.get_data(universe = ['95823@Orgid' ],fields = ['TR.IR.Rating'],parameters = {'SDate': '2020-01-01','EDate': '2025-12-31',})display(df
shared org id of the country with the user.
Please help me with the follow up.
I want to get for all the available sovereigns and for a given date.
I guess universe parameter represents US, I want to know how to get for all the soveriengs.