-
Search light API document
Hi, I want to know if there is any documentation on search light service through RDP ? Thans sarah
-
"api.refinitiv.com" Rate Slowdown—Possible Shared App Key Contention
Hi team, Our 35,000-symbol equity job (US/HK/CN RICs) hitting https://api.refinitiv.com has slowed from roughly 41 RIC/min to 30 RIC/min over the last week, with many more 429/503 responses and reduced daily output. Our pipeline—async Windows workers, proxy config, concurrency—hasn’t changed. Another team under the same…
-
Total return for a stock
Dear all, for RDP (not Eikon), e.g. https://api.refinitiv.com/data/historical-pricing/v1/views/interday-summaries/VOD.L, do I have any possibility to get a total return timeseries? It is possible for S&P or Bloomberg, is it also possible here?
-
Getting Fund's Constituents is not working
Hi, I am currently using the funds\v1\assets endpoint of the RDP API to retrieve all constituents of a fund via the “Holdings” property. However, I keep getting an empty result, as shown below: { "assets": [], "totalRecords": 0, "fromIndex": 0, "toIndex": 0, "pageNumber": 0} Does anyone know if I am using the correct…
-
API to download broker research report from ADVRES app in workspace
Can someone help/ guide me about the feasibility to download broker reports on ADVRES app on worksapce via API. would appreciate your help on this.
-
Getting Token Expired error
Team, I got the following error when I try the https://api.refinitiv.com/file-store/v1/file-sets api on Postman. Why I am getting it? { "error": { "id": "ac3da0a5-932d-4de5-b84f-549e166cd872", "code": "401", "message": "token expired", "status": "Unauthorized" } }
-
v2 authentication for RDP Historical pricing API
I tried to run “timeSeries.py” from https://developers.lseg.com/en/api-catalog/refinitiv-data-platform/refinitiv-data-platform-apis/download – authentication method used is “v2” with my CLIENT_ID and CLIENT_SECRET. Initial run went well – I got the data as expected: However, when I try again after the token from…
-
Got Session quota is reached error message.
Hi, I always got "Session quota is reached." error message when I am trying to login to RDP with my credential. The issue gone when I am using takeExclusiveSignOnControl=true parameter. Is it an expected behavior? How can I resolve this issue?
-
Error with websocket API connection to https://api.refinitiv.com/streaming/pricing/v1/
I am running the following example code: https://github.com/Refinitiv/websocket-api/blob/master/Applications/Examples/RTO/python/market_price_rto_service_discovery.py as follows: ``` python3 market_price_rto_service_discovery.py --user "" --password "" --clientid "" The output is: ``` Sending authentication request with…
-
Inquiry About RDP API Concurrent Request Limits per Access Token
Hi, I am currently working on a web application that integrates with the Refinitiv Data Platform (RDP) API using a Machine ID. To ensure optimal performance and compliance with platform limitations, I would like to clarify the following: What is the maximum number of concurrent API requests that can be made using a single…
-
python gets chains RIC
Hello, I'm using Python to call chains from aip.refinitiv.com to obtain the RIC. However, I get a 403 Forbidden error. However, I can obtain the RIC directly from https://apidocs.refinitiv.com/. 1, I'm wondering if this is a problem with my Python token settings or a permissions issue. 2, Does it require permissions for…
-
Performance Concern When Fetching News Stories
I am currently using the Refinitiv Data Platform (RDP) to fetch news data by executing Python code. I’m trying to retrieve individual stories using their story IDs, with the sample code below: def fetch_single_story(story_id, access_token): story_url = f"https://api.refinitiv.com/data/news/v1/stories/{story_id}"…
-
Are delayed ("/") RICs are supported in RDP company fundamentals requests?
Are any delayed RICs can be used in the RDP Fundamentals requests. For example, can I use a delayed RIC in the endpoint https://api.refinitiv.com/data/company-fundamentals/v1/financial-statements/global/balance-sheet?package=base&universe=/1010.SE ? Thanks
-
Own2InvHldgTO OwnTurnover Calculation
In the QA Direct module Ownership V2, there is the table Own2InvHldgsTO: Ownership Investor Holdings Percent ("This table contains information on the volume of shares traded as a percentage of total shares held in an investor's portfolio"). How exactly is this calculated? Is is the sum of the absolute values of the change…
-
OAuth2 does not work with refresh_token in RDP
Hello, We are using RDP to fetch news (/data/news/v1). We use OAuth2 to authenticate (https://api.refinitiv.com/auth/oauth2/v1/token) using a username/password at first and then the refresh_token we get from the response. We realized that after the actual token expiration we cannot retrieve a new one using the…