question

Upvotes
Accepted
1 4 4 6

Is there a way in RDP Symbology to pull up all security-related mappings (GlobalTickerMap record, Cusip or Sedol, etc.) for Angion Biomedica Corp.?

Is there a way in RDP Symbology to pull up all security-related mappings (GlobalTickerMap record, Cusip or Sedol, etc.) for Angion Biomedica Corp.?


rdp-apirefinitiv-data-platformsymbology
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 @Jenna.Tabunda ,

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

If so please can you click the 'Accept' text next to the appropriate reply? This will guide all community members who have a similar question.

Thanks,
AHS

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

Thanks,


AHS


Upvotes
Accepted
261 2 0 2

Hi @Jenna.Tabunda, @Alex Putkov.


In the example query above, this will navigate to all the 'at level' identifiers, so if the input is a RIC, it will return all the quote level identifiers associated with the RIC, if the input was an organisation permID, it would return all the organisation level identifiers like LEI.

In order to go from an organisation level identifier to all the related identifiers at the instrument or quote level associated with that organisation, some relationships need to be specified in the path parameter.


Below are 2 examples:


Navigate from Organization PermID to all instrument level identifiers for instruments issued by Angion Biomedica Corp PermID 5000644263


{

"from": [

{

"identifierTypes": [

"PermID"

],

"values": [

"5000644263"

]

}

],

"to": [

{

"identifierTypes": [

"ANY"

]

}

],

"path": [

{

"relationshipTypes": [

"InverseIsIssuedBy"

],

"objectTypes": [

{

"from": "Organization",

"to": "AnyInstrument"

}

]

}

],

"type": "strict"

}



Navigate from Organization PermID to all quote level identifiers for all instruments issued by Angion Biomedica Corp PermID 5000644263


{

"from": [

{

"identifierTypes": [

"PermID"

],

"values": [

"5000644263"

]

}

],

"to": [

{

"identifierTypes": [

"ANY"

]

}

],

"path": [

{

"relationshipTypes": [

"InverseIsIssuedBy"

],

"objectTypes": [

{

"from": "Organization",

"to": "AnyInstrument"

}

]

},

{

"relationshipTypes": [

"InverseIsQuoteOf"

],

"objectTypes": [

{

"from": "AnyInstrument",

"to": "AnyQuote"

}

]

}

],

"type": "strict"

}

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
39.4k 77 11 27

@Jenna.Tabunda

I'm not sure I understand the question. Are you asking whether symbology lookup endpoint on RDP can be used to retrieve all available identifiers for an entity given one identifier? If this is what you're asking, the answer is yes. There's an example titled "Identifier to all identifiers for the entity" for /discovery/symbology/v1/lookup endpoint on API Playground. And here's the example using ANGN.O RIC.

{
  "from": [
    {
      "identifierTypes": [
        "RIC"
      ],
      "values": [
        "ANGN.O"
      ]
    }
  ],
  "to": [
    {
      "identifierTypes": [
        "ANY"
      ]
    }
  ],
  "type": "strict"
}

The result of the above request is

{
  "data": [
    {
      "input": [
        {
          "value": "ANGN.O",
          "identifierType": "RIC"
        }
      ],
      "output": [
        {
          "value": "Q911123844",
          "identifierType": "TMTPermID"
        },
        {
          "value": "@ANGN",
          "identifierType": "DsQuotationMnemonic"
        },
        {
          "value": "ANGN-US,USD,NORM",
          "identifierType": "IlxId"
        },
        {
          "value": "ANGN",
          "identifierType": "ExchangeTicker"
        },
        {
          "value": "488899843",
          "identifierType": "QuotePI"
        },
        {
          "value": "BMD8P43",
          "identifierType": "Sedol"
        },
        {
          "value": "US03476J1079",
          "identifierType": "ExchangeIsin"
        },
        {
          "value": "99325Q",
          "identifierType": "DsQuotationNumber"
        }
      ]
    }
  ],
  "requestId": "530e5607-30e1-4c8c-8174-863576235bba",
  "effectiveAt": "2021-09-15T19:27:53.944Z",
  "messages": []
}
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
1 4 4 6

Thank you @Alex Putkov.

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.