I have PermID and Issuer names and I need to retrieve the cik numbers for these issuers. Can some...

I have PermID and Issuer names and I need to retrieve the cik numbers for these issuers. Can someone help me with the code to do this? I am using Workspace in my computer.

Best Answer

  • m.bunkowski
    Answer ✓

    Hi @s1910010

    You can do it using search. Sample code for Apple:

    import refinitiv.data as rd
    from refinitiv.data.content import search
    rd.open_session()
    response = search.Definition(
    filter = "IssuerOAPermID eq '4295905573'",
    top = 1,
    select = "IssuerCikNumber" ).get_data()
    response.data.df

Answers