Get latest returns
GET/api/v1/factor-returns
Retrieves the most recent returns for all covered assets. This endpoint provides the latest daily returns values.
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
time int64
Timestamp of the factor returns
liquidityFactorReturn double
sizeFactorReturn double
downsideBetaFactorReturn double
momentumFactorReturn double
growthFactorReturn double
valueFactorReturn double
{
"serverTime": "2025-06-23T09:33:30.025Z",
"error": "string",
"payload": {
"time": 0,
"liquidityFactorReturn": 0,
"sizeFactorReturn": 0,
"downsideBetaFactorReturn": 0,
"momentumFactorReturn": 0,
"growthFactorReturn": 0,
"valueFactorReturn": 0
}
}
Loading...