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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
3 1 0 2

Mapping Datascope symbologies- RIC CUSIP -> PermID

Is it possible to map Datascope symbologies together (RIC to PermID to ISIN to CUSIP, etc) against MiFID II data but also historical pricing and reference data - PermID is a must though.

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

Upvote
Accepted
13.7k 26 8 12

@tim.anderson1,

I don't fully understand your query, but if your aim is to cross reference instruments, that is possible by using a DSS Terms & Conditions API request.

The API call is described in DSS REST Tutorial 7. To retrieve the PermId, simply add content field name "Quote PermID".

Here is an example call in Postman:


Method: POST

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

Body:

{

"ExtractionRequest": {

"@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.TermsAndConditionsExtractionRequest",

"ContentFieldNames": [

"RIC", "CUSIP", "ISIN", "SEDOL", "Issuer OrgID", "Currency Code", "Quote PermID"

],

"IdentifierList": {

"@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",

"InstrumentIdentifiers": [

{ "Identifier": "00209tab1", "IdentifierType": "Cusip" },

{ "Identifier": "IBM.N", "IdentifierType": "Ric" },

{ "Identifier": "US4592001014", "IdentifierType": "Isin" },

{ "Identifier": "B1YW440", "IdentifierType": "Sedol" }

]

}

}

}


If this does not suffice, please post again, describing exactly what you are trying to achieve.

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.

Upvotes
3 1 0 2

Got it - thank helps - and that maps into all the historical pricing at as well - looks to be the best solution.

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.