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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
23 10 15 23

DSS API request RICs and get the fields as response

Dear All,

We are using DSS REST API request and we need daily access to various central bank reference interest rates for below RIC:

USF=

USFFTARGET=

ECBDF=ECBF

SARON.S

SONIAOSR=

EUROND=

CORRA=

AUDOND=

JPONMU=RR

We need to request above RIC to the DSS Rest API request and get response for the below fields:

  • RIC
  • Security Description
  • Universal Close Price Date
  • Universal Close Price
  • Base Currency

Can you please tell us which DSS REST Api we need to use which can provide us above information.


Thanks and regards,

Rahul D


dss-rest-apidss#productrics
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.

1 Answer

· Write an Answer
Upvotes
Accepted
14.2k 30 5 10

Hi @rahul.deshmukh ,

EndOfDayPricingExtractionRequest can be used,

url = "https://selectapi.datascope.refinitiv.com/RestApi/v1/Extractions/ExtractWithNotes"

With the request body below

{
   "ExtractionRequest":{
      "@odata.type":"#DataScope.Select.Api.Extractions.ExtractionRequests.EndOfDayPricingExtractionRequest",
      "ContentFieldNames":[
         "RIC",
         "Security Description",
         "Universal Close Price Date",
         "Universal Close Price",
         "Base Currency Code"
      ],
      "IdentifierList":{
         "@odata.type":"#DataScope.Select.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
         "InstrumentIdentifiers":[
            { "Identifier":"USF=", "IdentifierType":"Ric" },
            { "Identifier":"USFFTARGET=", "IdentifierType":"Ric" },
            { "Identifier":"ECBDF=ECBF", "IdentifierType":"Ric" },
            { "Identifier":"SARON.S", "IdentifierType":"Ric" },
            { "Identifier":"SONIAOSR=", "IdentifierType":"Ric" },
            { "Identifier":"EUROND=", "IdentifierType":"Ric" },
            { "Identifier":"CORRA=", "IdentifierType":"Ric" },
            { "Identifier":"AUDOND=", "IdentifierType":"Ric" },
            { "Identifier":"JPONMU=RR", "IdentifierType":"Ric" }
         ],
         "ValidationOptions":null,
         "UseUserPreferencesForValidationOptions":false
      },
      "Condition":null
   }
}

response

1691724042516.png



1691724042516.png (55.0 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.

Hi @raksina.samasiri, thanks for the feedback. I will check this Request.
@raksina.samasiri thanks its working. We can close the ticket.
@raksina.samasiri @Jirapongse can we get history data starting from 01.01.2023 for this request ?

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.