-
Raising obo a client: How to set up Refinitiv API for python?
Query: I'd like to set up the Refinitiv API for python. Can you please guide me? I have provided the following to the client: Here are the steps to set up the API connection via Python to pull data in LSEG Workspace: Step 1. Import the necessary libraries: import refinitiv.data as rdimport lseg.data as ld Step 2. Set up…
-
Please check we are getting error using the below code.
Please check we are getting error using the below code. import refinitiv.data as rd rd.open_session() df = rd.get_data( universe = ['.JTOPI'], fields = ['TR.IndexJLConstituentRIC.change'] ) display(df)
-
How to download the api for ESG related news for S&P500 companies at one time as period of ten years
-
Downloading historical ETF holdings
I want to download the historical stock holdings of an ETF (VONE.O). I tried the following: holdings = rd.get_data(universe = ['VONE.O'], fields = ['TR.FundHoldingRIC', 'TR.FundHoldingName', 'TR.FundHoldingsDate', 'TR.HoldingsDate', 'TR.FundNumberOfShares', 'TR.FundPercentageOfFundAssets'], parameters =…
-
Python Screener() function error
Dear all, I get an error when I try to run a screen in Python on CodeBook. I start with the example ,ipynb file provided (titled "Access__Screeners_And_Peers.ipynb") To get the screen I want, I follow the explanations on the Developers portal: I use the screener function on the Workspace desktop app (no error), then I…
-
Eikon API weird TS behavior
My client is currently trying out the codebook + API (which are extremely nice by the way) and she is running through a weird observation: The week+2 and week+3 show very weird “HIGH” prices that I do not find were traded on the market at the timestamp thy should be. For rolling c2 and c3 RIC codes, is there something…
-
How to get direct access to LSEG Data Platform?
I'm fetching now the LSEG News and articles through an api, using the API KEY and connecting through LSEG Workspace However I 'm looking into using getting direct access to the Data Platform. How can I do so ?
-
When connecting to LSEG Data platform I need an username and a password and an API KEY
Are these username, password my refinitiv workspace account ?
-
Create watchlist / portfolio from rdp
Hi all, Could you pls advice if there is a method in lseg-data python library to create a watchlist or portfolio? Or update a watchlist not manually. Thx, Alex
-
I want to retrieve crypto trading volume data similar to the 'TR.Volume' field. Is 'ACVOL_UNS' the c
-
How can I get the price and date data for PAc1?
When I search for PAc1’s price data in the workspace, I can retrieve the data shown in the chart below. However, when pulling data via the API, only partial data is returned.
-
How can I get the price and date data for .BUKSC?
I can get data by using " ld.get_data(['.BUKSC'], fields=['TR.OpenPrice','TR.HighPrice','TR.LowPrice','TR.ClosePrice(Adjusted=1)'],parameters={ 'SDate': '2025-07-21', 'EDate': '2025-07-24', 'Frq':'D' }).rename(columns={'Close Price': 'Adjusted Close'}) " but when i tried TR.OpenPrice.date, the API returned an error:…
-
Case 15034327 the EPS data is not updated in the eikon api
TCS.NS - Q1 FY26 financials period 06/30/2025 already updated in terminal but the EPS data is not updated in the eikon api (last value is still Q4 FY25). Can you please tell why the field TR.DillutedEpsExclExtra is not giving the latest numbers even when the quarterly financials have been updated.
-
Equity Bulk Search by Ticker via DataScope Select API
Hi team, I hope this inquiry finds you well. I'm looking for a way to locate equities by their tickers, and I know we have a request to that like this: That doesn't seem to allow the use of more than 1 ticker or org ID, I understand that TH Historical Search is not available for DSS Users, unless they get a TH ID, but is…
-
Is there a way to retrieve Turn Dates for a specific currency pair directly on Python ?
-
Eikon Data API (or “The Data Library”) via Python is a way to have multiple sessions open
I am currently experimenting with Eikon Data API (or “The Data Library”) via Python. Do you know a way to have multiple sessions open? When I run my Python script, I always have to close my running instance of LSEG-Workspace or the code won’t proceed (Python Code and Workspace running on the same machine). It would even be…
-
How to get the lseg news API access,
Hi team, when I tried to access, it shows as bellow: May I ask what product we have to include in our subscription to access news about agriculture product as well as general equities. Many thanks,
-
How to connect using Real-Time SDK EMA C# and RIC for FX
Hello, This actually a two questions post. I am trying to connect to RTO using EMA (LSEG.Ema.Core 3.4.0), however, I am struggling to do so (more on this later.) First, I am able to login and connect with websocket using example from MarketPriceRTOClientCredAuthExample project (I was given <client_id> and <client_secret>.)…
-
Error when placing appkey into their code
Customer successfully makes the key from APPKEY and places into their code, but getting below errors. Reference the attached email/screenshots from customer. What could be the issue here? Status code 400: Bad request on handshake url http://localhost:9005/api/handshake {"code" :400, "message" : "application key is not…
-
Client is facing the issue in running the Report client has access for the RIC .FTAS
from datetime import datetime as dt import pandas as pd import eikon as ek app_key='c5468339768f4efd92d04b15e44ae3b62dab8f22' ek.set_app_key(app_key) index_code='.FTAS' initial_date = pd.Timestamp(2025,7,18) fields = ['TR.IndexJLConstituentChangeDate', 'TR.IndexJLConstituentRIC.change', 'TR.IndexJLConstituentRIC']…