-
How to pull data from VCHAINS app via Python API ?
One of our users needs value chain customer data for approximately 538 listed companies. In the Workspace interface, she can easily view this data for individual companies via the VCHAINS app and export it to Excel. However, manually exporting data for all 538 companies one by one is not practical. She tried to retrieve…
-
Eikon API (or equivalent) without desktop application
I'd like to be able to use ek.get_timeseries() or ek.get_data() methods without the constraint of the application running in the local desktop. Is there a way? Would RDP be more suitable for the task? If so, can I obtain with RDP the same data as with the eikon API? thank you
-
Historical Implied Volatility Surface - EIKON API or RDP
Hello, I would like to pull IV timeseries as a function of moneyness using some Python API package like eikon or RDP.
-
Error on handshake
My code starts like this: import eikon as ek ek.set_app_key("my_key") I never got any errors. However, lately it hasn't been working anymore and I'm getting the following error: 2026-02-05 10:15:43,992 P[32556] [MainThread 44800] Error: no proxy address identified. Check if Eikon Desktop or Eikon API Proxy is running.…
-
Eikon Data API key not working
I have just installed the LSEG Workspace app for MacOS, and I am trying to connect to the Eikon Data API through Python (3.14). I seem to have a connection error. Initially, the error message said "No proxy address identified". I then followed the trouble shooting instructions…
-
How do I get historical management earnings per share forecasts?
Hi all, I want to analyze historical (quarterly) earnings per share forecasts from the management. How and where do I find them in the workspace or in Datastream? Thanks in advance and best!
-
Hello team how to bypass the TOP=10,000 limit in Workspace API CODEBK?
import refinitiv.data as rd rd.open_session() rd.discovery.search( view = rd.discovery.Views.GOV_CORP_INSTRUMENTS, top = 10000, filter = "((DbType eq 'GOVT' or DbType eq 'CORP' or DbType eq 'AGNC' or DbType eq 'OMUN' or DbType eq 'OTHR') and IsActive eq true and (RCSCountryGenealogy in ('G:DE')))", select =…
-
Eikon Messenger not working
Hi, The messenger app is not working - talking to other traders and not working for them as well. BR, Joshua
-
Corporate Event unique identifier
Is there a unique identifier in Eikon for each corporate action of each company, so that all registered corporate actions could be distinguished from each other?
-
Historical Leavers and Joiners of .SPX
I need a list of Leavers and Joiners at the beginning let say at 01-01-1990 and then have the in and out for the following years in Phyton API. So this need to be done in 2 times : First having the list at special date let’s say 01/01/1990 Second the IN and Out the following years. For sample RIC : .GDAXI To have a…
-
Client having issues with API from Eikon.
Case# 15138552 Raising the query on behalf of a client. Seeking assistance with the client query regarding the use of API from desktop Eikon. They are mentioning that the code is not working for several days now as well as getting errors on some asset classes they use. Error is below and script used(most RICs on script is…
-
How do I access alternative close prices via python API
Help! Is it possible to access alternative close prices from the python API? For example BRTDTDMc1 has 2 close prices. ASIA_CLOSE, EU_CLOSE, US_CLOSE, I want to access the ASIA close price as I am trying to find a common timestamp for the below list of prices. Reuters Code' : ['DUBSGSWMc2', 'MRBN1MMASc1', 'OQc1',…
-
App key is incorrect
I am getting this error. I've tried using a new API key but it isn't being resolved: 2025-08-05 11:51:37,203 P[50440] [MainThread 14636] Error on handshake url http://127.0.0.1:9000/api/handshake : EikonError(1, 'Status code 400: App key is incorrect')
-
How to get the associated countries in a list of revenue fractions via Eikon API
Hello, I'm working with the Eikon API via Python and am trying to obtain the associated list of the top 20 countries that are associated with the 20 countries returned by the "Country of Risk Revenue Fraction" data item. The code below gives me the list of revenue fractions, but not the countries themselves to compare with…
-
Clarification on Differences Between eikon and refinitiv-data Libraries
I have a question regarding the appropriate usage of the eikon and refinitiv-data Python libraries for retrieving company metadata based on RICs. Previously, I have used the eikon package as follows to retrieve metadata fields such as "TR.RIC", "TR.ExchangeName", "TR.ExchangeTicker", "CURRENCY", "TR.ISIN", and "TR.CUSIP":…