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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
22 4 4 10

How to retrieve data for all RICs under an ISIN via DSS REST API?

DSS API Source query.jpg

Hello,

how can I retrieve e.g. Intraday pricing data for all RICs under a given ISIN?

I tried this command but "*" in Source field does not work (it does in DSS GUI):

{ "Identifier": "DE0005190003", "IdentifierType": "Isin", "Source": "*" }



dss-rest-api#product
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
83.1k 281 53 77

@Lukasz Ossowski

Thank you for reaching out to us.

I am using the IntradayPricingExtractionRequest (DSS report template) and it can return RICs under a given ISIN.

{
    "ExtractionRequest": {
        "@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.IntradayPricingExtractionRequest",
        "ContentFieldNames": [
            "RIC",
            "Ask Price",
            "Asset Type",
            "Bid Price",
            "Currency Code",
            "Exchange Code",
            "High Price",
            "Instrument ID",
            "Instrument ID Type",
            "Low Price",
            "Open Price",
            "Previous Close Date",
            "Previous Close Price",
            "Security Description",
            "Settlement Price",
            "Trade Date",
            "User Defined Identifier",
            "Volume"
        ],
        "IdentifierList": {
            "@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
            "InstrumentIdentifiers": [
                {
                    "Identifier": "DE0005190003",
                    "IdentifierType": "Isin",
                    "Source": "*"
                }
            ]
        },
        "Condition": {
            "ScalableCurrency": true
        }
    }
}

1715916494902.png

You may check the "Notes" in the response for the extraction descriptions.

If you got the same result, please contact the DSS support team directly via MyRefinitiv to verify the content.


1715916494902.png (46.1 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.

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.