General
Retrieves a filtered list of vaults with their basic information including address, network, associated asset details, and transactional support status.
Page number (starting from 0)
0
Number of items per page
50
Include only vaults with provided network(name or CAIP)
Include only vaults with an asset of provided symbol(ticker)
Include only vaults that are supported in the transactional interface.
Include only vaults that are featured in app.vaults.fyi
GET //v2/vaults HTTP/1.1
Host: api.vaults.fyi
x-api-key: YOUR_API_KEY
Accept: */*
{
"itemsOnPage": 1,
"nextPage": 1,
"data": [
{
"address": "text",
"network": {
"name": "mainnet",
"chainId": 1,
"networkCaip": "text"
},
"asset": {
"address": "text",
"assetCaip": "text",
"name": "text",
"symbol": "text",
"decimals": 1,
"assetLogo": "https://example.com",
"assetPriceInUsd": "text"
},
"isTransactional": true,
"isAppFeatured": true
}
]
}
Retrieves a filtered list of supported assets with their metadata including address, symbol, name, decimals, and network information.
Page number (starting from 0)
0
Number of items per page
50
Include only vaults with provided network(name or CAIP)
GET //v2/assets HTTP/1.1
Host: api.vaults.fyi
x-api-key: YOUR_API_KEY
Accept: */*
{
"itemsOnPage": 1,
"nextPage": 1,
"data": [
{
"address": "text",
"assetCaip": "text",
"name": "text",
"symbol": "text",
"decimals": 1,
"assetLogo": "https://example.com",
"assetPriceInUsd": "text",
"network": {
"name": "mainnet",
"chainId": 1,
"networkCaip": "text"
}
}
]
}
Retrieves a complete list of available vault categorization tags that can be used for filtering and organizing vault data
Tags of the vault
GET //v2/tags HTTP/1.1
Host: api.vaults.fyi
x-api-key: YOUR_API_KEY
Accept: */*
[
"text"
]
Retrieves a complete list of supported blockchain networks with their identifiers including network name, chain ID, and CAIP format identifier.
GET //v2/networks HTTP/1.1
Host: api.vaults.fyi
x-api-key: YOUR_API_KEY
Accept: */*
[
{
"name": "mainnet",
"chainId": 1,
"networkCaip": "text"
}
]
Last updated