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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
1 0 0 0

How to get traditional and simplified chinese names for a stock in DSS?

The names can be obtained from Bloomberg using the fields

NAME_CHINESE_TRADITIONAL
NAME_CHINESE_SIMPLIFIED


How can I get these data from DSS Rest API?


Thanks.

dss-rest-apidatascope-selectdss
icon clock
10 |1500

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

1 Answer

Upvotes
Accepted
11.3k 25 8 13

Hi @Alex Chan,

As this is directly related to content, I would suggest you contact DSS Content support via MyRefinitiv.

Anyway, could you try the following extraction request? From my testing, the value "Local Language Display Name" field is similar to the DSPLY_NMLL (1352) of Elektron real-time data.

POST https://hosted.datascopeapi.reuters.com/RestApi/v1/Extractions/ExtractWithNotes
{
    "ExtractionRequest": {
        "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.IntradayPricingExtractionRequest",
        "ContentFieldNames": [
            "RIC",
            "Local Language Display Name"
        ],
        "IdentifierList": {
            "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
            "InstrumentIdentifiers": [
                {
                    "Identifier": "0001.HK",
                    "IdentifierType": "Ric"
                }
            ],
            "ValidationOptions":null,
            "UseUserPreferencesForValidationOptions": true
        },
        "Condition": {
            "ScalableCurrency": true
        }
    }
}
icon clock
10 |1500

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

Click below to post an Idea Post Idea