History of Credit Rating Outlook

Hi, is there a way to get the full history of a firms rating outlooks? Currently, it appears to me that the API only outputs the most recent outlook opinion of any given rating agency. I am running with the following code:

  
START = '1995-01-01'
END = '2022-07-05'

OL = ['TR.CommonName', 'TR.IO.OutlookDate', 'TR.IO.OutlookEndDate', 'TR.IO.Outlook','TR.IO.OutlookDescription','TR.IO.OutlookRatingSourceDescription', 'TR.IO.OutlookSourceCode','TR.IO.OutlookSourceDescription',      'TR.IO.OutlookScopeDescription']

df, err = eikon.get_data(
    ['NO0010096985'], OL,
    {'SDate': START, 'EDate': END, 'RatingScope': 'All'}
)

Best Answer

Answers