Hi,
I would like to find (via TRTH API) all of the warrants for a given underlying RIC. I can find this information via Reuters/Eikon web app, but I have had no luck finding it in Datascope Select instrument search or via the API (which is my strong preference).
As an example, I am interested in all warrants for the underlying 0914.HK. In the web app I can see the following:
How can I access this programatically?
Cheers,
I was able to use the warrant chain expansion, 0914W.HK, to expand both current and historical warrants for a given underlying. I would suggest this over searching for a description which only returns currently active warrants and relies on the warrant descriptions matching that of the underlying, which is not always the case.
Hi @bmcelroy
This is my request:
POST https://hosted.datascopeapi.reuters.com/RestApi/v1/Search/EquitySearch HTTP/1.1 Prefer: respond-async Content-Type: application/json Authorization: Token <my_token> { "SearchRequest": { "AssetStatus": "Active", "SubTypeCodes": ["WRNT"], "Description": "CONCH CEMENT", "ExchangeCodes": [ "HKG" ] } }
And this is the response I got:
I can count them to 50 identifiers which is the same as on 0914.HK overview page.