For the complete documentation index, see llms.txt. This page is also available as Markdown.

APY

sMON APY historical data

Get sMON APY History

get

Returns historical APY (Annual Percentage Yield) data for Kintsu's sMON token.

APY is calculated daily based on staking ratio changes. Data is sorted newest first.

Query parameters
daysinteger · min: 1 · max: 365Optional

Number of days of historical APY data to return

Default: 30Example: 30
Responses
200

Successful response

application/json
get/api/public/apy
GET /api/public/apy HTTP/1.1
Host: kintsu.xyz
Accept: */*
{
  "data": [
    {
      "date": "2026-01-09",
      "apy": 0.116557,
      "apyFormatted": "11.66%"
    },
    {
      "date": "2026-01-08",
      "apy": 0.121544,
      "apyFormatted": "12.15%"
    },
    {
      "date": "2026-01-07",
      "apy": 0.12396,
      "apyFormatted": "12.40%"
    }
  ],
  "meta": {
    "total": 30,
    "days": 30,
    "latestApy": "11.66%",
    "chainId": 143
  }
}

Last updated