List borrow markets
curl --request GET \
--url https://api.vaults.fyi/beta/borrow/markets/ \
--header 'x-api-key: <api-key>'{
"itemsOnPage": 123,
"data": [
{
"marketId": "<string>",
"name": "<string>",
"network": {
"chainId": 123,
"networkCaip": "<string>"
},
"protocol": {
"name": "<string>",
"product": "<string>",
"version": "<string>"
},
"marketRootAddress": "<string>",
"assetsData": [
{
"asset": {
"address": "<string>",
"assetCaip": "<string>",
"name": "<string>",
"symbol": "<string>",
"decimals": 123,
"assetGroup": "<string>",
"assetLogo": "<string>",
"assetPriceInUsd": "<string>",
"oraclePriceUsd": "<string>"
},
"isCollateralEnabled": true,
"supportsHistoricalData": true,
"assetConfig": {
"isBorrowEnabled": true,
"borrowInterestFeeRate": 0.5,
"borrowCap": "<string>",
"supplyCap": "<string>"
},
"supplyRate": 1,
"borrowRate": 1,
"utilizationRate": 1,
"totalSupplied": {
"native": "<string>",
"usd": "<string>"
},
"totalBorrowed": {
"native": "<string>",
"usd": "<string>"
},
"availableLiquidity": {
"native": "<string>",
"usd": "<string>"
},
"interestRateModel": {
"model": "single-kink",
"baseRate": 1,
"optimalUtilization": 0.5,
"slope1": 1,
"slope2": 1
},
"defaultRiskParameters": {
"maxLtv": 0.5,
"liquidationThreshold": 0.5,
"liquidationPenalty": 0.5
},
"pairwiseRiskParameters": {}
}
]
}
],
"nextPage": 123
}Borrow Markets
List borrow markets
Retrieves a paginated list of supported borrow markets across all supported networks.
GET
/
beta
/
borrow
/
markets
/
List borrow markets
curl --request GET \
--url https://api.vaults.fyi/beta/borrow/markets/ \
--header 'x-api-key: <api-key>'{
"itemsOnPage": 123,
"data": [
{
"marketId": "<string>",
"name": "<string>",
"network": {
"chainId": 123,
"networkCaip": "<string>"
},
"protocol": {
"name": "<string>",
"product": "<string>",
"version": "<string>"
},
"marketRootAddress": "<string>",
"assetsData": [
{
"asset": {
"address": "<string>",
"assetCaip": "<string>",
"name": "<string>",
"symbol": "<string>",
"decimals": 123,
"assetGroup": "<string>",
"assetLogo": "<string>",
"assetPriceInUsd": "<string>",
"oraclePriceUsd": "<string>"
},
"isCollateralEnabled": true,
"supportsHistoricalData": true,
"assetConfig": {
"isBorrowEnabled": true,
"borrowInterestFeeRate": 0.5,
"borrowCap": "<string>",
"supplyCap": "<string>"
},
"supplyRate": 1,
"borrowRate": 1,
"utilizationRate": 1,
"totalSupplied": {
"native": "<string>",
"usd": "<string>"
},
"totalBorrowed": {
"native": "<string>",
"usd": "<string>"
},
"availableLiquidity": {
"native": "<string>",
"usd": "<string>"
},
"interestRateModel": {
"model": "single-kink",
"baseRate": 1,
"optimalUtilization": 0.5,
"slope1": 1,
"slope2": 1
},
"defaultRiskParameters": {
"maxLtv": 0.5,
"liquidationThreshold": 0.5,
"liquidationPenalty": 0.5
},
"pairwiseRiskParameters": {}
}
]
}
],
"nextPage": 123
}Authorizations
Query Parameters
Page number (starting from 0)
Required range:
x >= 0Number of items per page
Required range:
0 < x <= 1000⌘I

