Morpho is currently #2 Top TVL Lending Protocol according to DefiLlama: https://defillama.com/protocols/lending It's basically AAVE where vault tokens represent position the user has lent out on the protocol. API Docs: https://docs.morpho.org/tools/offchain/api/morpho-vaults/ GraphQL endpoint: https://api.morpho.org/graphql GraphQL query for scraping historical prices for all vaults: query VaultPriceHistorical($options: TimeseriesOptions) { vaults(first: 100, orderBy: TotalAssetsUsd, orderDirection: Desc) { items { address chain { id network } historicalState { sharePriceUsd(options:$options) { x y } } } } }