-
Time for updating the trade date in the datascope response.
{ "IdentifierType": "Ric", "Identifier": "AUD=", "RIC": "AUD=", "Asset Type Description": "Money Market", "Security Description": "Australian Dollar/US Dollar FX Spot Rate", "Trade Date": "2025-03-26", "Bid Price": 0.6297, "Ask Price": 0.6301, "Mid Price": 0.6299, "Universal Ask Price": 0.6301, "Universal Bid Ask Date":…
-
How to get Futures OHLCV from DataScope Select Rest API in Python3?
I would like to get the following RIC OHLCV using DataScope Select's Rest API in Python3. Could you provide sample code? RIC : .SPX DSP : S&P 500 Index - CBOE
-
EURIBOR EndOfDay Extraction
Hello, I am trying to retrieve the EURIBOR rates from this Ric with an EndOfDayPricingExtractionRequest. And the API is returning a null value. However, on the Datascope Select GUI there are values for these fields, only from two days before. So my question is, is there any way to retrieve the first row through the API? Or…
-
Is there any DataScope Pubs App API available?
Hello, there is webui application (https://select.datascope.refinitiv.com/Pubs/Permissions/UserBrowser). Do you know, if there is any API endpoint available for this? I am trying to find a way of verification, if the specific DSS account has been cancelled/deactivated. In pubs App there is a field 'is active', but i…
-
Hi Dev, Please assist us regarding the below C# related question? Thanks in advance.
I have trouble with a program that use to work and get now an error "an error occurred while sending the request" after 22 minutes after asking for 500 isin. var extractionRequest = new BondScheduleExtractionRequest //type of request on reuters API { IdentifierList = collec, //ContentFieldNames = new[] { "ISIN" // ,"Coupon…
-
How would I get all upcoming Corporate Actions (and respective fields) using C# SOAP Api?
We are using Data Scope Select to import upcoming corporate actions for a list of Instruments. The current system is still using SOAP and I am now in the process of figuring out how to translate this to using the newer REST service Api in C#. In the old system we would use a call to "Define" to get a list of all…
-
Extract Unmanaged and unverified Legal Entity records through DSS REST API
Hello, I'm trying to find the best way to retrieve Unmanaged and unverified legal entities out of the DSS REST API On Demand extractions. It seems that through POST /Extractions/ExtractWithNotes, if you stick to "IdentifierList": { "@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.EntityIdentifierList",…
-
UseExchangeCodeInsteadOfLipper flag in C# DataScope Select - REST API?
Hi all, I'm using the DataScope Select REST API C# dll libraries to make CompositeExtractionRequests In the http REST API there is a json flag you can use for "UseExchangeCodeInsteadOfLipper" - is there an equivalent for this on the CompositeExtractionRequest C# class? All I can see on that class is IdentifierList,…
-
Generic Contract RIC
Is there concept of a generic contract RIC? For example in Bloomberg, CL1 refers to the current active WTI Crude contract. This points to CLX4 now, and rolls over to CLZ4 next month. CL2 points to the first deferred contract etc. If so, what is the naming convention for generic contracts for Refinitiv? I am trying to get…
-
In Time and Sales report, how do we exclude "off book" records?
In the "Qualifiers" column in Time and Sales report, there are some entries which are Off Book Trades. How do we exclude this using the API ? Qualifiers S[ACT_FLAG1];S[CONDCODE_1];[CONDCODE_2];N [ELIGBL_TRD];Off Book Trades[USER];"SI "[TR_TRD_FLG];47------MP----[MMT_CLASS]
-
[LSEG DataScope Select - REST API] Is it possible to retrieve user's details or claims?
I need to create Python function, that would verify if specific client's DSS ID is still valid. When i run get request using the following endpoint 'https://selectapi.datascope.refinitiv.com/RestApi/v1/Users/Users(9034757)' and my own user id, i am getting a valid response:…
-
Failed to extract market depth
Hi, I can successfully download tick history with following code while for market depth, for depth it always returns empty df. Could you shad some light on why it doesn't work? Thank you!
-
Failed to extract market depth
Hi, I can successfully download tick history with following code while for market depth, for depth it always returns empty df. Could you shad some light on why it doesn't work? Thank you!
-
HistoricalReferenceExtractionRequest very slow (C# API)
Hello, I'm requesting static data on several options chain RIC on a range of 10 days. It takes at least 1 hour to have a result. I will need the static data on the whole history (many years), what is the most efficient way to request the data ? Example of the code on 10 days: var extractionRequestStatic = new…
-
Obtain matching RIC for passed ISIN + MIC + Currency combination
I have a list of securities (ISIN + MIC + Currency which allows to uniquely identify them) for which I am looking to obtain the matching RIC using datascope select. For example: * US88160R1014, XNAS, USD * US0378331005, XNAS, USD * US6516391066, XNYS, USD I scoured the different questions on the Q&A portal but none…