-
get a list of companies with cryptocurrency, cryptoasset or blockchain flag
Can you please confirm if this is do-able on Workspace API? Link : https://developers.lseg.com/en/article-catalog/article/crypto-asset---blockchain-flags---introduction-to-regulatory-com#:~:text=We%20are%20going%20to%20use%20the%20following%20DataScope%20Select%20templates,dll Checking the link, DSS API is the product to…
-
Using EOD report template to retrieve historic prices?
Is it possible to use EOD report template to retrieve historic prices? (must avoid using TimeSeries templates). This is in xml format via sftp requests to Datascope Select Is it possible, any hints?
-
Search for RICs by Bloomberg ID/Identifier
One of our customers has Bloomberg IDs in his data we are going to process. For that data we need market data for further processing. Is there any way to look up RIC codes by using Bloomberg identifiers (Ticker codes / Bloomberg ID, ...)? Thanks in advance!
-
DSS Debt Corporate Actions Iso Report Template
Hi Team, Could you please share working API request for Debt Corporate Actions ISO 15022? I've been trying to use example provided in API tree, but the query isn't working. Here's what I've been running: { "ExtractionRequest": { "@odata .type":…
-
How to get FTSE trade volume decimals when Volume = 0.
I am using this endpoint to get time and sales for ftse350 stocks. def get_time_and_sales(rics, query_start_date, query_end_date, max_retries=10, retry_delay=20, identifier_type: str = "Ric"): """ Retrieves time and sales data for given RICs from Refinitiv. Docs:…
-
Requesting access to trapi.data.research.read / trapi.alerts.research.crud scope for Research API
Hello, I am a student at the University of Toronto. I am trying to access Aftermarket Research reports via the Refinitiv Data Platform API. Currently, my account can generate tokens, but the access token does not include the required scopes (trapi.data.research.read and trapi.alerts.research.crud). As a result, I receive…
-
Scheduled price extraction for currencies
Trying to extract scheduled price data for CNH and CNY identifiers , i was able to successfully extract EOD pricing for these identifiers but facing error when trying to extract the prices at specific time of day, please find below the API query details along with URL and error message Code from ayx import Alteryx import…
-
DSS Intraday Price for CNH, CNY identifiers at 4:30 PM SGT not getting extracted
I tried setting up my code to get the price at 8:30 AM UTC but it doesnt seem to work, could you please help me with it Code token_url = "https://selectapi.datascope.refinitiv.com/RestApi/v1/Authentication/RequestToken" payload = "{\r\n "Credentials": {\r\n "Username": "9038135",\r\n "Password": "***********"\r\n }\r\n}"…
-
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: https://developers.lseg.com/en/api-catalog/datascope-select/datascope-select-rest-api/tutorials#rest-api-tutorial-12--search-for-an-equity That doesn't seem to allow the…
-
Can we confirm if we are now enforcing secret key upon login to Datascope Select?
Can we confirm if we are now enforcing secret key upon login to Datascope Select? How can we find this secret key for the client? Hi Irene, We gave that a go, however think its a different credential that is needed. Here is the information from the devs: The Credential Manager is failing to fetch the token to fetch the…
-
DSS PriceHistoryReportTemplate - issue with Condition (ReportDateRangeType)
{"@odata.type": "#DataScope.Select.Api.Extractions.ReportTemplates.PriceHistoryReportTemplate", "ShowColumnHeaders": true, "Name": "Test", "Headers": [], "Trailers": [], "ContentFields": [{"FieldName": "Ask Price"}, {"FieldName": "Bid Price"}], "Condition": {"ReportDateRangeType": "Range"}} resp = {'error': {'message':…
-
How can we request the CommoditySearch API for the particular ric code?
The request body for the request is as in the code block below. Here, we are receiving the response with unwanted Identifier value such as 'D-NGMMH25' with prefix 'D'? How can we get only the valid Identifier assigned to our user. { "SearchRequest": { "KeywordQuery": "NGMM", "ExpirationDate": { "@odata.type":…
-
FX Rates Datascope API specification request
Hi All, We would like to use DSS REST API to extract FX rates from Datascope Select I was provided this link: https://developers.lseg.com/en/api-catalog/datascope-select/datascope-select-rest-api It sounds I cannot connect here https://amers1.identity.ciam.refinitiv.net/auth/UI/Login How to get the API specification we…
-
Case 14545631: Why are we missing trade data for <.OQ> RICs?
https://us.v-cdn.net/6038239/uploads/VDR8OYFL1VSW/re-3a-case-14545631-3a-why-are-we-missing-trade-data-for-3c-oq-3e-rics-3f-5b-ref-3a-2100d300602x-21500ky0ccsdk-3aref-5d.pdf https://us.v-cdn.net/6038239/uploads/U0VMWWK8RQ9Z/extraction-summary-trth-equity-tr-20250228-eod-2.log…
-
Getting time and sales data. No data in the 200 response
What am I doing wrong? I'm trying to follow this: https://developers.lseg.com/en/article-catalog/article/using-tick-history-in-r-language-part-3 def preview_response(response, num_lines=100): """ Prints the first few lines of a streamed Refinitiv API response. :param response: The streamed API response. :param num_lines:…