question

Upvotes
Accepted
1 4 4 6

How to convert RIC / CUSIP / SEDOL to EstimateID in RDP

I see that EstimatedID is the primary company identifier in the ARM Output file for RDP Starmine. Please advise how can we convert RIC / CUSIP / SEDOL to EstimateID in RDP?


Should we do the conversion in RDP endpoint /discovery/symbology/v1/lookup? If so, may you kindly share the specific request POST parameters that we can use to convert RIC to EstimateID.

rdp-apirefinitiv-data-platformstarmine
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.

@Jenna.Tabunda, private questions are reserved when client identifying information is included. Making this question public.

PS: Please encourage client to directly ask questions on the forum

@Jenna.Tabunda

Hi,

Thank you for your participation in the forum.

Is the reply below satisfactory in answering your question?

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


@Jenna.Tabunda

Hi,

Please be informed that a reply has been verified as correct in answering the question, and marked as such.

Thanks,

AHS

1 Answer

· Write an Answer
Upvote
Accepted
22.1k 59 14 21

Hi @Jenna.Tabunda,

I am unable to find estimate ID in symbology conversion. However, you could use search or searchlight for this lookup.

Here is an example for RIC -> estimate ID conversion:

POST https://api.refinitiv.com/discovery/searchlight/v1/

{
  "View": "SearchAllLight",
  "Filter": "RIC eq 'IBM'",
  "Select": "QuoteEstimateID"
}

Response:

{
  "Total": 1,
  "Hits": [
    {
      "QuoteEstimateID": "US_4741N_1"
    }
  ]
}

similarly:

{
  "View": "SearchAllLight",
  "Filter": "CUSIP eq '459200101'",
  "Select": "QuoteEstimateID"
}

{
  "Total": 177,
  "Hits": [
    {
      "QuoteEstimateID": "US_4741N_1"
    },


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.