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 dataProducts.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 dataApps.VALUATION or "valuation"
for valuation
class Products(Enum):
PRIVATE_EQUITY = "pe"
PRIVATE_INFRA = "pi"
class Apps(Enum):
INDICES = "indices"
VALUATION = "valuation"
Example:
response = await session.indices_catalogue(product=Products.PRIVATE_INFRA, app=Apps.INDICES)