-
G8 Bond Auctions Data
Hello, I am interested in fetching Government Auctions data for G8 countries pythonically through the refinitiv.data API. I am currently utilizing the rd.discovery.Views.GOV_CORP_INSTRUMENTS to do this. However, the issue is that in this View, it seems like the data are overridden if there is a new re-opening auction for a…
-
Formula error
can you please check if you can assist? “Basically, I have a formula RDP.Search("COMPANY", $B$8, "NBROWS:500 SORT:DTSubjectName:A", , ) which returns a sample 5073619959 5073620114 5073620117 5073619966 5074009689 5051175432 5084167849After I copy it and paste it back as values, I get 5073619959. all values after the first…
-
Mapping Advanced Search options
Hello everyone/Eikon support, Would it be possible to have the mapping filter options names:python identifier for all the options available in the Advanced Search app ? Thanks a lot in advance
-
Requesting for an API on Datascope Select API
I have a client request who is using DataScope select to download market data for both ICEPOF and CME GLOBEX instruments. The client has requested for an API that would allow them to automate lookup of GLOBEX/ICEPOF identifiers in DataScope Select?For example:GLOBEX CWDU5 for May 2026 -> RIC ZWDK26ICE 5819 (Low Sulphur…
-
How to use CUSIP to get the RIC for equity indices?
I'm using python API. I'm trying to extract RIC for Equity Indices by cusip. As an example, I have Cusip 648815108 for S&P 500 Index and Cusip 12497K100 for CBOE Market Volatility Index. However, when I search with the below query I have an empty dataframe returned. df3 = rd.discovery.search(…
-
Query About DSS API
I'm working to query RICs using the DSS HistoricalCriteriaSearch API. I see that the responses are limited to 30k records max. Is there a way to paginate the query? also, could you provide an example of a regular expression that is supported by the RicPattern field in HistoricalCriteriaSearch? I've been experiencing a high…
-
Why does .DEX , example GOOG.DEX receive no L2Rics OR complexRICs attribute in discovery search api
When I do a POST request hit to 'https://api.refinitiv.com/discovery/search/v1/' with the below payload, I receive a list of venues … { Filter: "BusinessEntity eq 'Quote' and BaseAsset eq '154423041' and not (ExchangeCode in ('NSQ' 'ASQ' 'NYQ' 'XDS' 'DEU' 'TOJ' 'ITE' 'RRC' 'PCQ' 'NAQ' 'NMQ' 'XBO' 'XCA' 'CAQ' 'AUX'…
-
What is the data item for yield to maturity in discovery.search function from the refinitiv.data.com
client verbatim "I'm using the discovery.search function from the refinitiv.data.content package in Python to find bond data and carry out some calculations. I'm trying to find the code for yield or yield to maturity but can't seem to find the correct name for it." I provided a TR data item (TR.FiMaturityStandardYield) but…
-
How to filter out Equity/Index Warrants from search.Definition result?
We use this query to get RICs: res=search.Definition( view = search.Views.EQUITY_QUOTES, filter = "AssetState ne 'DC' and RIC eq '*.MX' and ExchangeCode eq 'MEX'", select = 'RIC', order_by = 'RIC asc', top = 10000 ).get_data() It works fine, but the result contains more than 1000 RICs that look like GFN_tcR001.MX,…
-
DSS REST API Search
Hi, we are trying to search bonds with REST API in DSS. We are running a search via DSS REST API (1 below) and get 11 results, but when we run the same(?) search in DSS GUI we get 22 (pic 2 below). Why is this? Is there a difference in the API Search in comparison to the GUI search that needs to be considered? 1) {…
-
Pagination
I am using LSEG library in Python. I was able to identify first 10,000 observation of any data set I want to obtain (e.g. VC investments, M&A deals). However, I cannot do pagination meaning going through data coming after 10,000th row. I tried to use skip + top, it gives skip + top cannot exceed 10,000 error. I tried…
-
RDP instrument search and Entitlements
We pull instruments using these following queries from RDP /search api. curl --location "https://api.refinitiv.com/search/beta1/" --header "content-type: application/json" -H "Authorization: Bearer ....” --data "{ \"View\": \"SearchAll\", \"Filter\": \"RIC eq 'MNI50500J5'\", \"Select\": \"RIC, RicRoot,…
-
Do we have RDP Search Java library
We are utilizing RDP search api from our Java backend services to get Options contract list. We are making simple WebClient calls to get this information. Are there any JAVA RDP search libraries which we could use for this purpose(like making the RDP connection, deserializing the search response to mapper objects etc?) ?
-
DISCREPANCY BETWEEN SEARCH VIA WORKSPACE APPLICATION AND VIA API
I'm searching for the company tree of some company. these company are subsidiaries and by downloading the tree excel from the workspace application, it is possible to see what level and who they are under. However, if the same thing is done with python starting with the ultimate parent these companies do not come up. Has…
-
Search function operators
I'm searching for the search function operators (ex.: 'eq') mentioned in this article https://developers.lseg.com/en/article-catalog/article/building-search-into-your-application-workflow. The article links to a documentation that I don't have access to, despite having the search function. Thanks in advance for your help.