Is there a way to pull summary page details via DSS Rest API ?

 I am currently using the DataScope Select GUI, and when I perform a search using an ISIN in the summary, I can access information regarding the Underlying RIC and Underlying Security Details. However, when I attempt to retrieve this information using the DSS API Search endpoints, I am unable to do so. Could you please assist me in identifying the appropriate endpoint to use for this specific use case?


print.png

Answers

  • Hello @Rachana,

    What is your intended use case? If you are interested in looking up the primary RIC for an ISIN, then please look at this article which explains how to use DSS to convert symbology between different identifiers.

  • Jirapongse
    Jirapongse ✭✭✭✭✭

    @Rachana

    You can use the TermsAndConditionsExtractionRequest to extract this summary data.

    {
    "ExtractionRequest": {
    "@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.TermsAndConditionsExtractionRequest",
    "ContentFieldNames": [
    "Issuer Name",
    "Domicile",
    "Issuer OrgID",
    "GICS Industry Code",
    "Security Description",
    "Currency Code",
    "PILC",
    "Exchange Code",
    "Asset Type",
    "Asset SubType",
    "Asset Category",
    "Is Asset Active Flag",
    "Round Lot Size",
    "File Code",
    "Tag",
    "Underlying RIC",
    "Underlying Security Description"
    ],
    "IdentifierList": {
    "@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
    "InstrumentIdentifiers": [
    {
    "Identifier": "VOD.L",
    "IdentifierType": "Ric"
    }
    ]
    }
    }
    }

    For more information, please refer to the REST API Tutorial 7: On Demand T&C extraction tutorial on the LSEG Developer Community.