-
I need help understanding how to use LSEG Data Library for Python
I need help understanding how to use LSEG Data Library for Python and how to set the App key in order to access content directly within the cloud using the Platform Session.
-
Refintiv Historical Data API. How do you get exchange information?
I want to get exchange information for time and sales data. How do I do this using the python code for historical_pricing? This is my python code: response = historical_pricing.events.Definition( universe=rics, start=start_datetime, end=end_datetime ).get_data() Is there a way to get time and sales data WITH exchange…
-
need to filter Japanese stock data with api
I need to filter Japanese stock data that meets the following criteria: Exchanges: Tokyo (TKS), Osaka (OSE), Nagoya (NGY), Fukuoka (FKU) Security Type: Common Stock Listing Status: Including Active and Delisted Country of Domicile: Japan Time Range: Monthly data from January 2024 to April 2025 I have tried various query…
-
Can you please help in creating VBA code for the below:
What I need is VBA code to: Check whether Workspace COM add in is loaded, and load it if not Check Workspace status (online, offline, refreshing, paused) and trigger log in and refreshes Retrieve FX spot live, today’s high, today’s low as well as fixrates (WMRH etc) and the corresponding timestamps
-
Access broker reports available on the Company Research module through any of the Refinitiv APIs
Client wanted to check if it’s possible to access broker reports available on the Company Research module through any of the Refinitiv APIs—possibly via the Research API or a similar service. We’re exploring ways to automate the retrieval of such content and would appreciate any guidance on available options or relevant…
-
There's a delay in API data updates.
A discrepancy exists between Excel and the API: Excel successfully pulls the latest crude oil data immediately after the 22:30 (Beijing Time) Wednesday release, but the API endpoints return outdated data. Is there a way to optimize the API's refresh cycle to ensure real-time data availability? Eg:…
-
How to use rdp.session.platform.Definition with RDP Password in refinitiv-data v1.6.2?
Hi Refinitiv Developer Community, I'm trying to authenticate to the Refinitiv Data Platform using the refinitiv-data Python library, specifically version 1.6.2. My environment is Python 3.12 running on Ubuntu. My goal is to establish a platform session using my RDP credentials (App Key, RDP Username [which is a Machine ID…
-
lseg-data and refinitv-data discrepancy
I'd like to pull the last trade price using lseg-data for a commodity. After speaking to support through the platform, I was given the suggestion to ask on the forums. How can I replicate the same results from the picture above with lseg-data?
-
Different result between rdp API with workspace app and using config file.
Hi all, We are currently building out an application that is using the Refinitiv RDP API to retrieve information. We have found two ways of connecting to the API : We can just open a session using rd.open_session(), when running code locally with the Refinitiv workspace open We can specify a config file containing our API…
-
"Number of user subscription exceed the limit" error: news-stories-subscriptions endpoint
Hi, I am attempting to connect to the https://api.refinitiv.com/alerts/v1/news-stories-subscriptions via a Python script on my local machine. When doing a POST request to this, I keep hitting the following error: {"error":{"id":"3aa593ff-7498-4dbc-8aca-b3882f556d0a","code":"30016","status":"422","message":"Number of user…
-
Insufficient Scope Error (trapi.data.research.read) When Accessing Research API via Java REST Reques
We are developing a Java application to programmatically download Initiation reports for specific companies using the Refinitiv Research API via REST requests. However, we are encountering a permission error indicating insufficient scope when attempting to access certain endpoints. Problem Details: Objective: Download…
-
Get Connect Error when open a session
Hi, I got a connect Error when try to open a session. How to fix it? import lseg.data as ld ld.open_session() An error occurred while requesting URL('https://api.refinitiv.com/auth/oauth2/v1/token').ConnectError('[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate…
-
RDP API - access forbidden (can't retrieve new token)
Hi, we cannot access historical API and therefor not retrieving historical prices : (api.refinitiv.com) Response error [] with response error code [0] and response status code [403] when requesting new token. Parsing error [3] at [0] for message : [<html> 983<head><title>403 Forbidden</title></head> 984<body>…
-
Unable to Locate App Key/ RDP API Credentials in Neither Developer Portal nor Workspace key App
Hello: Then I’m trying to integrate the Refinitiv Data Platform (RDP) API into my automation workflow, but I’m unable to locate or create the required OAuth2 credentials (Client ID/Client Secret or App Key) in the Developer Portal. First I tried apply under Workspace key generator, it's empty. Then I did: Signed in at here…
-
How To Connect to News With Python
Hello, I am trying to connect to RDP news directly in python without having the terminal in the same machine. import lseg.data as ld import os os.environ["LD_LIB_CONFIG_PATH"] = r"C:\\Users\\padadmin\\PycharmProjects\\pythonProject\\Repos\\pwm-pad\\APIs\\Configuration" ld.open_session() Where I have the json file like…