Hi @s1910010
You can do it using search. Sample code for Apple:
import refinitiv.data as rdfrom refinitiv.data.content import searchrd.open_session()response = search.Definition( filter = "IssuerOAPermID eq '4295905573'", top = 1, select = "IssuerCikNumber" ).get_data()response.data.df
@m.bunkowski Thank you! Is there any way I can run a loop to search for different permIDs? I have a list of them I need to find the CIK for.
Here is a sample:
permids = ['4295904307','4295905573','4297089638']for p in permids: response = search.Definition( filter = f"IssuerOAPermID eq '{p}'", top = 1, select = "IssuerOAPermID, IssuerCikNumber,ShortName" ).get_data() print(response.data.df)