Vaults V1
Get V1 vault realized average APY
Realized average APY of a Morpho Vault V1 over a predefined lookback period, derived from share price evolution. Post-fee, excludes rewards.
Vault selector example: 1:0x23f5E9c35820f4baB695Ac1F19c203cC3f8e1e11 (format: <chain_id>:<vault_address>; replace with the target vault).
Path Parameters
vault-selector*string
Selector formatted as <chain_id>:<vault_address>. Example: 1:0x23f5E9c35820f4baB695Ac1F19c203cC3f8e1e11.
Format
<chain_id>:<vault_address>Query Parameters
lookback?string
Lookback period for the APY calculation. Defaults to six_hours.
Value in
"one_hour" | "six_hours" | "one_day" | "seven_days" | "thirty_days" | "ninety_days" | "one_year" | "inception"Response Body
application/json
BASE_URL="${CORE_REST_BASE_URL:-https://api.morpho.org}"MORPHO_API_KEY="<MORPHO_API_KEY>"VAULT_SELECTOR="<chain_id>:<vault_address>"curl -sS "${BASE_URL}/v0/vaults-v1/${VAULT_SELECTOR}/apy-averages?lookback=six_hours" \ -H "accept: application/json" \ -H "x-api-key: ${MORPHO_API_KEY}"{
"data": {
"apy": 0,
"chain_id": 1,
"last_indexed_block": "string",
"lookback": "one_hour",
"vault_address": "string"
}
}