Get historical scores for all assets
GET/api/v1/factor-scores/history
Returns a list of historical scores for a given asset within a specified time range. The start and end dates are optional; if not provided, the endpoint defaults to the full history window available for the given asset.
Request
Query Parameters
start_date string
Optional ISO8601 start timestamp for the query period (inclusive).
end_date string
Optional ISO8601 end timestamp for the query period (exclusive).
Responses
- 200
successful operation
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
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
liquidityFactorScore double
liquidityFactorScoreAll double
sizeFactorScore double
sizeFactorScoreAll double
downsideBetaFactorScore double
downsideBetaFactorScoreAll double
momentumFactorScore double
momentumFactorScoreAll double
growthFactorScore double
growthFactorScoreAll double
valueFactorScore double
valueFactorScoreAll double
{
"serverTime": "2025-06-23T09:33:30.030Z",
"error": "string",
"payload": [
{
"asset": "BTC",
"time": 0,
"broadCapConstituent": true,
"liquidityFactorScore": 0,
"liquidityFactorScoreAll": 0,
"sizeFactorScore": 0,
"sizeFactorScoreAll": 0,
"downsideBetaFactorScore": 0,
"downsideBetaFactorScoreAll": 0,
"momentumFactorScore": 0,
"momentumFactorScoreAll": 0,
"growthFactorScore": 0,
"growthFactorScoreAll": 0,
"valueFactorScore": 0,
"valueFactorScoreAll": 0
}
]
}
Loading...