Docs

Get V2 vault realized average APY

GET
/v1/vaults-v2/{vault-selector}/apy-averages

Realized average APY of a Morpho Vault V2 over a predefined lookback period, derived from share price evolution.

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

curl -X GET "https://example.com/v1/vaults-v2/1:0x23f5E9c35820f4baB695Ac1F19c203cC3f8e1e11/apy-averages"
{  "data": {    "chain_id": 1,    "vault_address": "0x23f5E9c35820f4baB695Ac1F19c203cC3f8e1e11",    "last_indexed_block": "25475349",    "lookback": "six_hours",    "apy": 0.021513718810443165  }}