v1

latestOpenAPI 3.0.42026-07-262045103.2 KB
Assets

Get Shares Multiplier History for an Asset

This endpoint retrieves the shares multiplier history for a specific asset. Note that some asset events do not result in the shares multiplier value changing. This endpoint will show the earliest timestamp for each value change.

The range parameter determines how far back historically to look for shares multiplier data. See below for valid range values.

Valid range values:

  • 1day
  • 1month
  • 3month
  • 6month
  • 1year
  • all (all historical data)

For caching details on this endpoint, please see: Endpoint Caching.

get/v1/assets/{symbol}/shares-multiplier

Path parameters

symbolstring required

The GM token symbol

Query parameters

range'1day' | '1month' | '3month' | '6month' | '1year' | 'all' required

The look back range for historical data. (Note that '1day' will return a rolling 24-hour period of data and 'all' will return all historical data.)

The lookback range for historical data.

Response

OK

timestampnumber required

The Unix timestamp in milliseconds when the data point was recorded.

Example response

{
  "history": [
    {
      "sharesMultiplier": "1.25",
      "changeTimestamp": 1746655938000
    }
  ],
  "timestamp": 1746655938000
}