Skip to main content
GET
/
yields
/
{yieldSource}
/
history
Get yield history
curl --request GET \
  --url https://api.kamino.finance/yields/{yieldSource}/history
[
  {
    "createdOn": "2025-03-01T12:00:00.000Z",
    "apr": "0.2",
    "apy": "0.2"
  }
]

Documentation Index

Fetch the complete documentation index at: https://kamino.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

yieldSource
string
required

Yield source identifier. For regular yields use the token mint address. For extra farm yields use the format: farmAddress-rewardMint

Examples:

"AvZZF1YaZDziPY2RCK4oJrRVrbN3mTD9NL24hPeaZeUj"

"FciPo1fpNgStdnVvKT7abcFfyqn2sJijLrNLCkKtbsye-2u1tszSeqZ3qBWF3uNGPFc8TzMk2tdiwknnRMWGWjGWH"

Query Parameters

start

Date input (ISO 8601 string or epoch in ms)

Example:

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

end

Date input (ISO 8601 string or epoch in ms)

Example:

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

Response

OK

createdOn
string<date-time>
required

Timestamp when the snapshot was created (ISO 8601 format)

Example:

"2025-03-01T12:00:00.000Z"

apr
string
required

APR in decimal format (not percentage) represented as string. Multiply by 100 to get percentage (%) - 0.1 in API response is 10%.

Examples:

"0.123"

"0"

"1"

"1.23"

"-0.5"

"999999.999999"

apy
string
required

APY in decimal format (not percentage) represented as string. Multiply by 100 to get percentage (%) - 0.1 in API response is 10%.

Example:

"0.2"