Endpoint Parameters

  • Request parameters

    Name Type Origin Description
    $skip Integer Query-String The number of entries to skip from the beginning of the collection
    $top Integer Query-String The number of entries to return from the beginning of the collection
  • Response Parameters

    View Response Codes
    Name Type Description
    __count Number The total count of items in the feed.
    __next String The link for the next page of items in the feed.
    Data PriceDetail [] The collection of entities for this feed.
    MaxRows Number The maximum number of rows that can be returned (if applicable).
  • Request Example

    Request URL
    GET /partnerintegration/v1/instrumentprices?$skip=1&$top=1
  • Response Example

    Response body
    {
      "__next": "/openapi/....../?$top=1&$skip=1",
      "Data": [
        {
          "AssetType": "Stock",
          "Currency": "USD",
          "Description": "Apple Inc.",
          "Isin": "IE00BZ6T6F29",
          "LastUpdated": "2024-04-20T04:42:06.452873Z",
          "Price": 10,
          "Uic": 122
        }
      ]
    }