Get data for multiple vaults
get
Get a detailed list of vaults filtered by given parameters
Authorizations
Query parameters
pageintegerOptionalDefault: 
Page number
0per_pageinteger · max: 250OptionalDefault: 
Number of items per page
10tagsstring[]Optional
List of tags to filter by all of the tags must be present on the vault to be included in the results
tokenstring · min: 1Optional
Name or symbol of the token to filter by
networkstring · enumOptionalPossible values: 
Network name or caip to filter by
tvl_minnumberOptional
Minimum TVL in USD to filter by
tvl_maxnumberOptional
Maximum TVL in USD to filter by
transactionalOnlystring · enumOptionalPossible values: 
Return only vaults that support transactional endpoints
transactionalFeaturedOnlystring · enumOptionalPossible values: 
Return only vaults that support transactional endpoints and are featured in app.vaults.fyi
Responses
200
Default Response
application/json
get
/v1/detailed/vaultsGET /v1/detailed/vaults HTTP/1.1
Host: api.vaults.fyi/
x-api-key: YOUR_API_KEY
Accept: */*
200
Default Response
{
  "next_page": 1,
  "data": [
    {
      "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
      }
    }
  ]
}