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.
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
}
}
}
}
}