Ecosystem
Operators
Withdrawals
Deposits
Distribution Roots
AVS
AVS APY
Fetches APY (Annual Percentage Yield) data for the specified AVS.
GET
/
eigenlayer
/
avs-apy
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/avs-apy
{
"avsAddress": "<string>",
"apy": 123,
"strategyApys": [
{
"strategy": "<string>",
"strategyTvl": 123,
"totalApy": 123,
"tokenApys": [
{
"token": "<string>",
"apy": 123,
"duration": 123,
"rewardInEth": 123
}
]
}
]
}
Query Parameters
The AVS address for which APY data is requested.
Response
200
application/json
APY calculation successful.
The AVS address provided.
The total APY for the AVS address.
The strategy address.
The total value locked (TVL) for the strategy in ETH.
The total APY for the strategy.
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/avs-apy
{
"avsAddress": "<string>",
"apy": 123,
"strategyApys": [
{
"strategy": "<string>",
"strategyTvl": 123,
"totalApy": 123,
"tokenApys": [
{
"token": "<string>",
"apy": 123,
"duration": 123,
"rewardInEth": 123
}
]
}
]
}