Skip to main content
GET
/
v1
/
assets
/
{symbol}
/
shares-multiplier
Get Shares Multiplier History for an Asset
curl --request GET \
  --url https://api.gm.ondo.finance/v1/assets/{symbol}/shares-multiplier \
  --header 'x-api-key: <api-key>'
{
  "history": [
    {
      "sharesMultiplier": "0.481891643381832405",
      "changeTimestamp": 1762736520093
    },
    {
      "sharesMultiplier": "0.481566453805576042",
      "changeTimestamp": 1754870400044
    },
    {
      "sharesMultiplier": "0.481185641420460013",
      "changeTimestamp": 1753992000000
    },
    "..."
  ],
  "timestamp": 1770161184102
}

Authorizations

x-api-key
string
header
required

Path Parameters

symbol
string
required

The GM token symbol

Query Parameters

range
enum<string>
required

The lookback range for historical data. 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.)

Available options:
1day,
1month,
3month,
6month,
1year,
all

Response

OK

history
object[]
required
timestamp
number
required

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

Example:

1746655938000