Skip to main content

Get historical asset betas

GET 

/api/v1/assets/:asset/factor-betas/history

Returns a list of historical betas 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

Path Parameters

    asset stringrequired

    The ID of the asset to query. This field is required.

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

successful operation

Schema

    serverTime date-time
    error stringnullable

    description of error in natural language, absent in case of successful operation

    payload

    object[]

    nullable

    The response data

  • Array [

  • 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
  • ]

Loading...