Are we able to retrieve all the RICs or ISINs for active bonds for a PermID inputing the PermID v...

...ia EDP Symbology API?

Are we able to retrieve all the RICs or ISINs for active bonds for a PermID inputing the PermID via EDP Symbology API?

Best Answer

  • Jirapongse
    Jirapongse ✭✭✭✭✭
    Answer ✓

    Currently, Symbology API translates/converts identifiers that users have to identifiers that the EDP APIs accepts (e.g. from CUSIP to PermId).

    Upon checking further with our EDP API product team and they confirmed that we currently do not have the function of retrieving all RICs/ISINs using PermID.

Answers

  • Can anyone please answer this?

  • Jirapongse
    Jirapongse ✭✭✭✭✭

    @hiroko.yamaguchi

    Please contact the EDP Symbology support team via Get Support and select "Elektron Data Platform - Symbology" as a product.

  • Hi @hiroko.yamaguchi, @ jirapongse.phuriphanvichai


    This navigation is supported in the latest release discovery/symbology/v1 e.g.


    Bond instrument PermID to ISIN

    {
      "from": [
        {
          "identifierTypes": [
            "PermID"
          ],
          "values": [
            "15629760831"
          ]
        }
      ],
      "to": [
        {
          "identifierTypes": [
            "ISIN"
          ]
        }
      ],
      "type": "auto"
    }


    Bond instrument PermID to Bond RICs:

    {
      "from": [
        {
          "identifierTypes": [
            "PermID"
          ],
          "values": [
            "15629760831"
          ]
        }
      ],
      "to": [
        {
          "identifierTypes": [
            "RIC"
          ]
        }
      ],
      "path": [
        {
          "relationshipTypes": [
            "InverseIsQuoteOf"
          ],
          "objectTypes": [
            {
              "from": "AnyInstrument",
              "to": "AnyQuote"
            }
          ]
        },
        {
          "relationshipTypes": [
            "InverseIsVehicleOf"
          ],
          "objectTypes": [
            {
              "from": "AnyQuote",
              "to": "AnyVehicle"
            }
          ]
        }
      ],
      "type": "strict"
    }