how to get a list of all exchanges for a single cusip or sedol?

rabramson
rabramson Newcomer

Using DSS rest api v. 2 how to get a list of all exchanges for a single cusip or sedol?

Best Answer

  • @rabramson

    There is the "Exchange Code List" field in TermAndConditions report which returns a list of exchange code the security is traded on. The list of exchange codes can be found in this table.

    Below is the sample of On Demand extraction request.

    POST https://hosted.datascopeapi.reuters.com/RestApi/v1/Extractions/ExtractWithNotes

    {
    "ExtractionRequest": {
    "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.TermsAndConditionsExtractionRequest",
    "ContentFieldNames": [
    "Exchange Code List"
    ],
    "IdentifierList": {
    "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
    "InstrumentIdentifiers": [
    {
    "Identifier": "BH4HKS3",
    "IdentifierType": "Sedol"
    },
    {
    "Identifier": "US4592001014",
    "IdentifierType": "Isin"
    }
    ],
    "ValidationOptions": null,
    "UseUserPreferencesForValidationOptions": false
    },
    "Condition": null
    }
    }

Answers