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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
1 2 2 2

how to extract price for multiple source from refinitiv

Hi Team,

We are trying to consume prices from refinitiv using multiple source (| separated). We are using the below format, "Source":"EJV|TWE" in our refinitiv request, but we are getting response as "error":"not found". Although if we try to hit using single source option we are getting price response from refinitiv (like "source":"EJV"). Can you please guide us on correct request format to extract prices from multiple source?

dss-rest-apidatascope-selectdss
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.

1 Answer

· Write an Answer
Upvotes
Accepted
11.3k 25 9 14

Hi @abhishek.joshi6,

You can create new instrument identifier for the same identifier with difference sources. You can also add "UserDefinedIdentifier" for differentiate responses.

Below is the sample format.

            "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
            "InstrumentIdentifiers": [
                {
                    "Identifier": "XS0066120915",
                    "IdentifierType": "Isin",
                    "Source": "EJV",
                    "UserDefinedIdentifier": "From EJV source"
                },
                {
                    "Identifier": "XS0066120915",
                    "IdentifierType": "Isin",
                    "Source": "TWE",
                    "UserDefinedIdentifier": "From TWE source"
                }
            ],

sample of response

    "Contents": [
        {
            "IdentifierType": "Isin",
            "Identifier": "XS0066120915",
            "UserDefinedIdentifier": "From EJV source",
            "Asset Status": "ISS",
            "Asset Type": "CORP",
...
        },
        {
            "IdentifierType": "Isin",
            "Identifier": "XS0066120915",
            "UserDefinedIdentifier": "From TWE source",
            "Asset Status": "ISS",
            "Asset Type": "CORP",
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.

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.