Discover Refinitiv
MyRefinitiv Refinitiv Perspectives Careers
Created with Sketch.
All APIs Questions & Answers  Register |  Login
Ask a question
  • Questions
  • Tags
  • Badges
  • Unanswered
Search:
  • Home /
  • TRTH /
avatar image
Question by Igor Schein · Sep 12, 2017 at 04:52 PM · trthv2rest api

Requesting more than one SEDOL at a time

When I try this:

{

"Request": {

"Identifier": "BD8DS52",

"IdentifierType": "Sedol",

"Range": {

"Start": "2017-09-11T00:00:00.000Z",

"End": "2017-09-11T23:59:59.999Z"

}

},

"Request": {

"Identifier": "BDH44M5",

"IdentifierType": "Sedol",

"Range": {

"Start": "2017-09-11T00:00:00.000Z",

"End": "2017-09-11T23:59:59.999Z"

}

}

}

I get an error "The request JSON is malformed. Duplicate keys found". Is it possible to request Identifier for multiple Sedols/Isins in one POST request? The reference document is a little bit conflicting about it.

People who like this

0 Show 0
Comment
10 |1500 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

4 Replies

  • Sort: 
avatar image
REFINITIV
Best Answer
Answer by veerapath.rungruengrayubkul · Sep 13, 2017 at 12:27 AM

@Igor Schein

I understand that you are using HistoricalSearch. The message, you are using, seems not correct, so the error was received. Anyway, the HistoricalSearch supports only one identifier at a time.

In this case, you can also use the HistoricalReferenceExtraction to retrieve reference data for multiple identifiers at a time.

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


{
    "ExtractionRequest": {
        "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.HistoricalReferenceExtractionRequest",
        "ContentFieldNames": [
           "RIC","Exchange Code"
        ],
        "IdentifierList": {
            "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
            "InstrumentIdentifiers": [
                {
                    "Identifier": "BD8DS52",
                    "IdentifierType": "Sedol"
                },
                {
                    "Identifier": "BDH44M5",
                    "IdentifierType": "Sedol"
                }
            ],
            "ValidationOptions": {"AllowHistoricalInstruments": true},
            "UseUserPreferencesForValidationOptions": false
        },
        "Condition": {
            "StartDate": "2017-09-11T00:00:00.000Z",
            "EndDate": "2017-09-11T23:59:59.999Z"
        }
    }
}

Output:

        {
            "IdentifierType": "Sedol",
            "Identifier": "BD8DS52",
            "RIC": "SANT1.VI",
            "Exchange Code": "VIE"
        },
        {
            "IdentifierType": "Sedol",
            "Identifier": "BDH44M5",
            "RIC": "MSBT.VI",
            "Exchange Code": "VIE"
        }
Comment
Igor Schein

People who like this

1 Show 0 · Share
10 |1500 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

avatar image
Answer by Igor Schein · Sep 13, 2017 at 10:27 AM

@veerapath.rungruengrayubkul

Thank you, that's very helpful. I wish this was a part of REST API Use Cases Reference document.

While playing with it, I've been getting a lot of intermittent errors "No JSON object could be decoded". In my recent example, I ran the same 200-sedol message 5 times in a row Got the error 4 times, and successful completion once. I'm keen on getting this addressed, so I am attaching the message in question.in.txt


in.txt (11.1 KiB)
Comment

People who like this

0 Show 0 · Share
10 |1500 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

avatar image
Answer by Igor Schein · Sep 13, 2017 at 11:00 AM

@veerapath.rungruengrayubkul

It seems to be a timeout issue. The message either completes in under 30sec or fails with the error above. Any way to increase timeout from 30sec?

Comment

People who like this

0 Show 0 · Share
10 |1500 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

avatar image
REFINITIV
Answer by veerapath.rungruengrayubkul · Sep 14, 2017 at 12:07 AM

@Igor Schein

This should expected behavior for asynchronous request, where the "Prefer: respond-async" specified in header of request.

If extraction is complete within an amount of time (30 seconds by default), the server will return 200 response with data. Otherwise, the server responds with a 202 (accepted), indicating that the request was accepted. The 202 response includes a monitor URL in the "Location" header. Application needs to send GET http request against the monitor URL to retreive data. However, if the response still is not available, another 202 response will be sent.

For more information, please see the Async Key Mechanisms and "Request accepted, but with a timeout" in the REST API Tutorial 10: On Demand Histo Reference extraction tutorial.

Regarding your question, if you don't want to handle the asynchronous mechanism, you may:

  • change the request to synchronous by removing the "Prefer: respond-sync" header. Synchronous requests will keep the connection open until the requested work has been completed or the request fails. This method is not recommend for extraction of huge amount of data.
  • increase timeout by adding "wait" in Prefer header. For example, "Prefer: respond-async, wait=120".
Comment

People who like this

0 Show 0 · Share
10 |1500 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Watch this question

Add to watch list
Add to your watch list to receive emailed updates for this question. Too many emails? Change your settings >
11 People are following this question.

Related Questions

I am accessing TRTH v2 data using API and using python as main language

Consecutive intraday-data extractions differ in their contents (TRTHv2)

Soap XML to Rest Conversion - Tick History V2

TRTH REST API - Could you please provide python API code to retrieve extraction ID and also Python code to download extracted file.

Identify delisted historic instruments

  • Feedback
  • Copyright
  • Cookie Policy
  • Privacy Statement
  • Terms of Use
  • Careers
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Alpha
  • App Studio
  • Block Chain
  • Bot Platform
  • Calais
  • Connected Risk APIs
  • DSS
  • Data Fusion
  • Data Model Discovery
  • Datastream
  • Eikon COM
  • Eikon Data APIs
  • Electronic Trading
    • Generic FIX
    • Local Bank Node API
    • Trading API
  • Elektron
    • EMA
    • ETA
    • WebSocket API
  • Legal One
  • Messenger Bot
  • Messenger Side by Side
  • ONESOURCE
    • Indirect Tax
  • Open PermID
    • Entity Search
  • Org ID
  • PAM
    • PAM - Logging
  • ProView
  • ProView Internal
  • Product Insight
  • Project Tracking
  • Refinitiv Data Platform
    • Refinitiv Data Platform Libraries
  • Rose's Space
  • Screening
    • Qual-ID API
    • Screening Deployed
    • Screening Online
    • World-Check One
    • World-Check One Zero Footprint
  • Side by Side Integration API
  • TR Knowledge Graph
  • TREP APIs
    • CAT
    • DACS Station
    • Open DACS
    • RFA
    • UPA
  • TREP Infrastructure
  • TRIT
  • TRKD
  • TRTH
  • Thomson One Smart
  • Transactions
    • REDI API
  • Velocity Analytics
  • Wealth Management Web Services
  • World-Check Data File
  • Explore
  • Tags
  • Questions
  • Badges