Get latest asset factor betas
GET/api/v1/assets/:asset/factor-betas
Retrieves the most recent factor betas for the requested asset. This endpoint returns a snapshot of factor exposures such as liquidity, momentum, size, and value, as of the latest available computation time.
Request
Path Parameters
asset stringrequired
The ID of the asset to query. This field is required.
Responses
- 200
successful operation
- application/json
- Schema
- Example (from schema)
Schema
serverTime date-time
error stringnullable
description of error in natural language, absent in case of successful operation
payload
object
nullable
The response data
asset string
Asset ID
time int64
Timestamp of the factor scores
broadCapConstituent boolean
Whether the asset is a Broad Cap constituent
liquidityFactorBeta double
sizeFactorBeta double
downsideBetaFactorBeta double
momentumFactorBeta double
growthFactorBeta double
valueFactorBeta double
marketFactorBeta double
{
"serverTime": "2025-06-23T09:33:30.019Z",
"error": "string",
"payload": {
"asset": "BTC",
"time": 0,
"broadCapConstituent": true,
"liquidityFactorBeta": 0,
"sizeFactorBeta": 0,
"downsideBetaFactorBeta": 0,
"momentumFactorBeta": 0,
"growthFactorBeta": 0,
"valueFactorBeta": 0,
"marketFactorBeta": 0
}
}
Loading...