For a deeper look into our DataScope Select REST API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
23 10 15 23

ISO Country Code and CFI code from DSS Terms and Conditions Request

Dear All,

I want to pass two different request to DSS Terms and Conditions Request.

In one request i want to pass ISO 3166 as Country code and get the response.

In second request i want to pass CFI Code: Code indicating the ISO10962 standard for the security classification and get the reponse.

I want to get the response for the below fields:

1693988909141.png

Normally i pass ISIN as a requests in DSS extraction but can we pass Country code/CFI code as a request ?


Thanks and regards,

Rahul D

dss-rest-apidss#product#contentterms-and-conditions
1693988909141.png (30.6 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Hello @rahul.deshmukh

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?


If so please can you click the 'Accept' text next to the appropriate reply? This will guide all community members who have a similar question.

Thanks,


AHS

Upvotes
Accepted
79.2k 251 52 74

@rahul.deshmukh

You need to login to MyRefinitiv to see the GCODES.

1694143306732.png

Sorry. This forum is for programming type queries, rather than content queries. Please contact the helpdesk support team via MyRefinitiv regarding how to get those information.



1694143306732.png (66.6 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
79.2k 251 52 74

@rahul.deshmukh

Thank you for reaching out to us.

In order to perform extractions, you need to pass:

  1. An instrument list that contains a list of instruments
  2. A report template that contains a list of content fields

The DSS will extraction the content fields of the instrument list.

According to the question, I assume that you would like to add Country codes or CFI Codes into an instrument list. I don't think that you can do it. The "ISO Country Code" and "CFI Code" are content fields of the Terms and Conditions report template.

However, you can contact the Datascope Select support team directly via MyRefinitiv to confirm this.

Please correct me, if my understanding is wrong.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Hi @Jirapongse ,

Sorry i did not mention in question. But i am looking for Master data information actually. For MIC, ISO Currency normally we dont need to pass any Instruments. Its just Currency or MIC data independant of any Instruments.

Does Refinitiv dont provide any Master Data Information ?


Thanks and regards,

Rahul D

@rahul.deshmukh

If you mean the list of all possible values, please contact the Datascope Select support team directly via MyRefinitiv.

i already created ticket and they mentioned to use below api but i didnt understood which extration request we need :


URL: https://selectapi.datascope.refinitiv.com/RestApi/v1/Search/GetCurrencies
Method: GET
Headers:
Prefer: odata.maxpagesize=10; respond-async
Show more comments
Upvotes
79.2k 251 52 74

@rahul.deshmukh

This endpoint (https://selectapi.datascope.refinitiv.com/RestApi/v1/Search/GetCurrencies) is used to get the list of currency codes, ISO codes and their descriptions.

import requests
import json


url = "https://selectapi.datascope.refinitiv.com/RestApi/v1/Search/GetCurrencies"


payload = {}
headers = {
  'Prefer': 'respond-async',
  'Content-Type': 'application/json',
  'Authorization': 'Token <token>'
}


response = requests.request("GET", url, headers=headers, data=payload)


print(response.text)

The output is:

1694077030759.png

You can also refer to the REST API Reference Tree to get other information.

1694077133591.png



1694077030759.png (63.8 KiB)
1694077133591.png (51.5 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

@Jirapongse thanks i am able to get all currencies now. I tried to search for all MIC's also but could not find in the document. Do you know how to get that ? I got response from the ticket that MIC list cannot be extracted from REST API but it can be extracted with gcode but the link they provided is not working. Do you know about this ?


MIC Codes link: https://my.refinitiv.com/gcodes/mic_cds.html
Currency Code links: https://my.refinitiv.com/gcodes/currency_cds.html


We would also like to get below information but dont know how to get it :

• CFI Klassifikation ISO 10962 (:2015 - :2021)

• Country EEA Membership Information


Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.