Skip to main content
Skip table of contents

2.3.7 SIPAMETRICS - INDICES_CATALOGUE

Description: The INDICES_CATALOGUE function uses different API endpoints based on the selected PRODUCT and APP values.

Parameters

  • PRODUCT (Products or string, required):
    Specifies the type of product for which you want to retrieve indices data. Accepted values are:

    • Products.PRIVATE_INFRA or "PI" for Private Infrastructure data

    • Products.PRIVATE_EQUITY or "PE" for Private Equity data

  • Apps (Apps or string, required):
    Specifies the type of product for which you want to retrieve indices data. Accepted values are:

    • Apps.INDICES or "indices" for indices data

    • Apps.VALUATION or "valuation" for valuation

CODE
class Products(Enum):
    PRIVATE_EQUITY = "pe"
    PRIVATE_INFRA = "pi"


class Apps(Enum):
    INDICES = "indices"
    VALUATION = "valuation"

Example:

CODE
response = await session.indices_catalogue(product=Products.PRIVATE_INFRA, app=Apps.INDICES)
JavaScript errors detected

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

If this problem persists, please contact our support.