-
From Company Names to RICs
Hello, I know that there have been previous questions on the topic, but the answers did not solve the issue for me. I have a vector of company names from the USPTO. company_names = df["disambig_assignee_organization"].dropna().tolist() print(company_names[:10]) Examples of firm names: 'International Business Machines…
-
permid match API not working
The permid match API is failing today. After about a 30 seconds it fails with an https response protocol error. Attached is a trivial case to reproduce the problem with python requests. it's been working fine every day for as long as I can remember. First failure I encountered was at 0820 UTC on 5th November.…
-
How to map RICs & Permid for a given FIGI code?
How to map RICs & Permid for a given FIGI code?
-
Mapping Bond ISIN to Issuer PermID
Hello! I would love to get some insight into a complete python method of mapping a bond ISIN to the issuer's PermID. According to helpdesk, there isn't a way, so I'll share how I've managed so far. Step 1: With my list of ISINs, I use the formula @RDP…
-
PermID API / questions from the internal review department
We are conducting an internal review for using PermID APIs, and the review department has raised the following inquiries. Could you please provide answers? ■ I believe the API authentication method is "API token method," but is it "OAuth2.0"? ■ When issuing tokens, it is assumed that we will go through an authorization…
-
Matching of Perm IDs
Regarding the matching, I wanted to confirm why there are records such as https://permid.org/1-5086653966 for a company like Experian, when this appears to be the correct PermID: https://permid.org/1-4295894507. I had this match when I entered a different office location (London instead of Nottingham), so I would just like…
-
Getting ISIN Numbers
Hello everyone, Currently I have PERM ID's as firm identifiers in my dataset. I want to gather their corresponding ISIN numbers. Is it possible to do that here ? If so how can I do that ?
-
empty (undefined) responses on some PermID web requests
Hello, On the PermID website I am getting empty (undefined) responses for some, but not all, organisational PermID requests. Here are some examples of undefined responses.: Hellenic Broadcasting Corporation ERT SA : https://permid.org/1-5044174690 Athens News Agency Macedonian Press Agency SA :…
-
Function to get RIC from PermID
How can I get the RIC code of a subsidiary's parent organisation by entering subsidiary PermID (API in Python). For example if I make a function, and I enter BlackRock (Ireland) with PermID 12345, return BLK
-
How to get particular permid complete details
I am calling below api to fetch matching companies: Now I want to get all details of one of the perm ids like for this: https://permid.org/1-4295907485 Which api should I call further to get all details like country, url, founders, business sector etc
-
Bulk download of PermID data
Hi, I am interested in downloading a large set of permid information. Given the limitation the Entity Search API has on 5,000 entities per day I was looking for alternatives. I found out the linked service in the following url, how can I access the bulk download service? https://permid.org/download Kind Regards.
-
how to identify which perm ID to use. 2 perms IDs for a given name.
Bamford Wealth Management, PermID URI:https://permid.org/1-5034973408, PermID URI:https://permid.org/1-5045471268
-
403 Forbidden at https://api-eit.refinitiv.com/permid/match
After many thousands of successful POST requests to this endpoint I am getting a 403 error now. Is there a rate limit that we have surpassed? We have to match ~20 million records to the PermID, and have matched ~2 million before getting that error.
-
Entity Search Results Limited to Maximum of 2000?
Dear Support, I am trying to iterate through all the quotes on the ASX using the following query: https://api.thomsonreuters.com/permid/search?access-token={token}&entityType=quote&q=mic:XASX&start=1&num=100 using batches of 100 quotes and incrementing the start value by 100 for each batch.The results I am getting looks…
-
Fetch Instruments and Quotes through PermID.org
Hi, I'm exploring the public API on permid.org. I do have a list of LEI's for a bunch of companies. My task is to get all traded instruments (if there is more than one) and their respective trading venues. I managed to map the entity to my LEI and I also get the primary instrument and quote of said entity. Where I do not…