Hi,
I have an Python API to pull CA data on a list of RICs every day. For this RIC, "BONDS", my API call works for a while and then stopped pulling data on Feb 14, 2025, and when I called helpdesk I was told this is not a specific identifier. I understand what they say, but "BONDS" as a specific identifier works previously. Below is my API call:
df_ssp = rd.get_data(['BONDS'], ['TR.BIDPRICE.date', 'TR.BIDPRICE', 'CF_DATE', 'TR.CLOSEPRICE', 'CF_LAST'], {'SDate': 0, 'FRQ': 'D'})
Every time when the data is pulled, I insert them into my MS SQL table, below is a list of information I previously pulled, just to prove that I did successfully pulled data before on this specific identifier:
If "BONDS" is no longer a valid RIC that's fine, I would like to confirm if there's another way to pull similar information on "Global Fixed Income"
Thank you.