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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
3 0 1 1

RIC found on Eikon but not from the datascope API

We have some RIC that we can see in Eikon app (for instance USDRWFFIX), but not available through the api:

{
  "ExtractionRequest": {
    "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.IntradayPricingExtractionRequest",
    "ContentFieldNames": [
      "RIC",
      "Bid Price",
      "Last Update Time",
      "Instrument Snap Time",
      "Security Description"
    ],
    "IdentifierList": {
      "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
      "InstrumentIdentifiers": [
        {
          "Identifier": "USDRWFFIX",
          "IdentifierType": "Ric"
        }
      ]
    }
  }
}

Would there be any Ric that are not available through API ?

dss-rest-apidatascope-selectdssrics.net
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.

Please be informed that your question has been moved to DSS forum

Upvotes
Accepted
11.3k 25 9 14

@pierre.vigier,

The RIC likely cannot be validated on DSS. To retrieve data, you need to add the AllowOpenAccessInstruments in the instrument validation options. Below is the sample.

{
  "ExtractionRequest": {
    "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.IntradayPricingExtractionRequest",
    "ContentFieldNames": [
      "RIC",
      "Bid Price",
      "Last Update Time",
      "Instrument Snap Time",
      "Security Description"
    ],
    "IdentifierList": {
      "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
      "InstrumentIdentifiers": [
        {
          "Identifier": "USDRWFFIX=",
          "IdentifierType": "Ric"
        }
      ],
       "ValidationOptions": {
            "AllowOpenAccessInstruments": true
       },
       "UseUserPreferencesForValidationOptions": false
    }
  }
}

Below is the information about the Allow Open Access Instruments option in the DSS GUI User Guide.


1592303613120.png (94.4 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.

Upvotes
11.3k 25 9 14

Hi @pierre.vigier,

I have tried to search the RIC name on Eikon and get the RIC name with '=' suffix ("USDRWFFIX=") instead. The USDRWFFIX= is available on DSS as well. Could you try the RIC?

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 0 1 1

I get the same response, but indeed, the Ric should be "USDRWFFIX="

{
    "@odata.context": "https://hosted.datascopeapi.reuters.com/RestApi/v1/$metadata#Collection(ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.ExtractionRow)",
    "value": [
        {
            "IdentifierType": "Ric",
            "Identifier": "USDRWFFIX=",
            "Error": "Not found"
        }
    ]
}
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 0 1 1

INdeed, it does work, thanks!

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.