New posts are disabled while we improve the user experience.

You can browse the site, or for urgent issues, raise a query at MyAccount.

question

Upvotes
Accepted
1 0 0 0

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

#technology#productapipython api
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

· Write an Answer
Upvotes
Accepted
87.8k 294 53 79

@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.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.