question

Upvotes
Accepted
76 5 5 10

Historical instruments Bulk Search ?

I want to verify the instruments for particular day before placing the extraction request through API. i can see the option is avalible in GUI. Is there any way to do it in API ?

tick-history-rest-apihistorical
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.

Hello @samara,

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?

If yes please click the 'Accept' text next to the reply. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question.

Thanks,

AHS

1 Answer

· Write an Answer
Upvote
Accepted
13.7k 26 8 12

@samara, iIf your purpose is just to validate that the instruments exist you could use the following API call:

Method: POST

Endpoint: https://hosted.datascopeapi.reuters.com/RestApi/v1/Extractions/InstrumentListValidateIdentifiersWithOptions

Body:

{
  "InputsForValidation": [
    {
      "Identifier": "CARR.PA",
      "IdentifierType": "Ric"
    },
    {
      "Identifier": "EUR=",
      "IdentifierType": "Ric"
    }
  ],
  "Options": {
    "AllowDuplicateInstruments": false,
    "AllowHistoricalInstruments": true,
    "AllowInactiveInstruments": true,
    "AllowOpenAccessInstruments": false,
    "AllowUnsupportedInstruments": false,
    "ExcludeFinrAsPricingSourceForBonds": false,
    "UseConsolidatedQuoteSourceForCanada": false,
    "UseConsolidatedQuoteSourceForUsa": false,
    "UseDebtOverEquity": false,
    "UseExchangeCodeInsteadOfLipper": false,
    "UseUsQuoteInsteadOfCanadian": false
  }
}

If you want to validate historical and inactive instruments ensure you set these 2 parameters true:

    "AllowHistoricalInstruments": true,
    "AllowInactiveInstruments": true,
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.