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": "*" }



Best Answer

  • Jirapongse
    Answer ✓

    @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.