Get data on single vault
get
Get a vault information given a specific address and network
Authorizations
Path parameters
vaultAddressstringRequiredPattern:
Address of a vault
^0x[a-fA-F0-9]{40}$
networkstring · enumRequiredPossible values:
Network name or caip
Responses
200
Object describing the vault
application/json
get
GET //v1/vaults/{network}/{vaultAddress}/ HTTP/1.1
Host: api.vaults.fyi
x-api-key: YOUR_API_KEY
Accept: */*
200
Object describing the vault
{
"name": "text",
"address": "text",
"network": "mainnet",
"protocol": "text",
"tvlDetails": {
"tvlNative": "text",
"tvlUsd": "text",
"lockedNative": "text",
"lockedUsd": "text",
"liquidNative": "text",
"liquidUsd": "text"
},
"numberOfHolders": 1,
"lendLink": "text",
"tags": [
"text"
],
"token": {
"name": "text",
"assetAddress": "text",
"assetCaip": "text",
"symbol": "text",
"decimals": 1
},
"apy": {
"base": {
"1day": 1,
"7day": 1,
"30day": 1
},
"rewards": {
"1day": 1,
"7day": 1,
"30day": 1
},
"total": {
"1day": 1,
"7day": 1,
"30day": 1
}
},
"description": "text",
"additionalIncentives": "text",
"rewards": [
{
"apy": {
"1day": 1,
"7day": 1,
"30day": 1
},
"assetPriceInUsd": 1,
"asset": {
"name": "text",
"assetAddress": "text",
"assetCaip": "text",
"symbol": "text",
"decimals": 1
}
}
],
"isTransactional": true,
"score": {
"vaultScore": 1,
"vaultTvlScore": 1,
"protocolTvlScore": 1,
"holderScore": 1,
"networkScore": 1,
"assetScore": 1
},
"assetPriceInUsd": 1,
"topHolders": [
{
"address": "text",
"balance": "text"
}
],
"holdersTotalBalance": "text"
}