Skip to main content
GET
/
klend
/
{depositReservePubkey}
/
{borrowReservePubkey}
/
rewards
/
history
Get KLend reward history
curl --request GET \
  --url https://api.kamino.finance/klend/{depositReservePubkey}/{borrowReservePubkey}/rewards/history
[
  {
    "timestamp": "2023-11-07T05:31:56Z",
    "depositReserve": "VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd",
    "borrowReserve": "VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd",
    "rewardToken": "VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd",
    "rewardApy": "0.2"
  }
]

Path Parameters

depositReservePubkey
string
required

Deposit reserve public key

Example:

"VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd"

borrowReservePubkey
string
required

Borrow reserve public key

Example:

"VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd"

Query Parameters

start
default:1970-01-01T00:00:00.000Z

Date input (ISO 8601 string or epoch in ms)

Example:

"2024-01-01T00:00:00.000Z"

end
default:2026-01-26T11:46:53.066Z

Date input (ISO 8601 string or epoch in ms)

Example:

"2024-01-01T00:00:00.000Z"

frequency
enum<string>

Frequency of historical data aggregation

Available options:
hour,
day
Examples:

"hour"

"day"

Response

OK

timestamp
string<date-time>
required

Timestamp of the data point

depositReserve
string
required

Deposit reserve public key, if applicable

Example:

"VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd"

borrowReserve
string
required

Borrow reserve public key, if applicable

Example:

"VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd"

rewardToken
string
required

Mint address of the reward token

Example:

"VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd"

rewardApy
string
required

Annual Percentage Yield from rewards at this point in time

Example:

"0.2"