How to find the country, address and other relevant information based off a company name?

How to find the country, address and other relevant information based off a company name? I have a list of 1300 companies names.my goal is the following:

I would like to find the country, address and other relevant information based on refinitiv data.

first i would need to extract their permId

and then extract from refinitiv codebook

with a python code

Answers

  • Jirapongse
    Jirapongse ✭✭✭✭✭

    @grace.arquion

    Thank you for reaching out to us.

    You can try the PermID - Record Matching - RESTful API to match organization entities with PermIDs.

    Otherwise, you can use the Search API in LSEG Data Library for Python to search for entities.

    For example:

    df = ld.discovery.search(
            view = ld.discovery.Views.ORGANISATIONS,
            filter = "CommonName in ('Tata Sky' 'Teva Pharmaceutical Industries' 'Apple Inc')",
            select = "DocumentTitle, CommonName, AddressCity, AddressLine1, OAPermID, CountryHeadquartersName",
            top = 10
        )
    df

    You can also refer to the examples on GitHub.