Skip to main content
Skip table of contents

2.3.7 indices_catalogue

Purpose
Retrieves list of indices.

Parameters

  • product (Product, required):
    Type of product offered.
    Supported products include: constants.Product.PRIVATE_INFRA, constants.Product.PRIVATE_EQUITY.

  • app (App, optional):
    Type of application within the product.
    Supported apps include: constants.App.MARKET_INDICES, constants.App.THEMATIC_INDICES.

Example

PY
import sipametrics.constants as CONSTANTS

response = await service.indices_catalogue(
    product=CONSTANTS.Product.PRIVATE_INFRA, 
    app=CONSTANTS.App.MARKET_INDICES
)

#Sample Response
#{
#    "data": {
#        "results": [
#            {
#                "indexFamilyId": "INFRA_DT_300",
#                "indexWeights": "CW",
#                "indexCurrency": "CAD",
#                "indexId": "INFRA_DT_300_CW_CAD",
#                "indexCode": "96017a7c-fef02435",
#                "indexName": "Infra300® Debt, VW CAD",
#                "hedging": "UNHEDGED",
#                "fee": "GROSS",
#                "externalTicker": "INFRBBBB",
#                "indexDescription": "The Infra300 Debt index represents the monthly performance of the most recent senior debt instruments issued by the constituents of the infra300® unlisted infrastructure equity index.  As of 2025-03-31 the index had a total market capitalisation of CAD 144.4 bn. Since inception, a total of 1512 individual instruments have been included in this index.",
#                "frequency": "Monthly"
#            },
#			 ...
#        ]
#    },
#    "metaData": [
#        {
#            "dataCount": 434
#        }
#    ]
#}
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.