Lender's Vault Exposure

Authorizations
AuthorizationstringRequired
Bearer token authentication. Example: "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
Responses
200
OK
application/json
401
Unauthorized
application/json
403
Forbidden
application/json
500
Internal server error
application/json
502
Bad Gateway
application/json
503
Service Unavailable
application/json
gethttps://api.arkis.xyz/e/v1/vaults
GET https://api.arkis.xyz/e/v1/vaults HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
"result": [
{
"address": "0x0514A0f7d44906A.....2283f67FcE7c066bA4c5",
"apy": "2.10",
"total_assets": {
"amount": "1000",
"symbol": "USDC"
},
"curator": "Arkis",
"id": 12,
"title": "Arkis USDC Vault",
"underlying_asset": "USDC"
}
]
}Authorizations
AuthorizationstringRequired
Bearer token authentication. Example: "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
Path parameters
vault_idstringRequired
Vault ID
Query parameters
Responses
200
OK
application/json
400
Bad request
application/json
401
Unauthorized
application/json
403
Forbidden
application/json
404
Not Found
application/json
500
Internal server error
application/json
502
Bad Gateway
application/json
503
Service Unavailable
application/json
gethttps://api.arkis.xyz/e/v1/vaults/{vault_id}
GET https://api.arkis.xyz/e/v1/vaults/{vault_id} HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
"result": {
"address": "0x0514A0f7d44906A23.....83f67FcE7c066bA4c5",
"apy": "2.10",
"underlying_asset": {
"symbol": "USDC",
"price_usdc": "1.001"
},
"total_assets": {
"symbol": "USDC",
"amount": "1000"
},
"curator": "Arkis",
"title": "Arkis USDC Vault",
"agreements": [
{
"id": "259",
"address": "0xf050A4b168FedFA678.....ccde17da4aeBb5220",
"apy": "1.00",
"underlying_asset": {
"symbol": "USDC",
"price_usdc": "1.001"
}
},
{
"id": "260",
"address": "0x694ecd8A2ee4fD.....9A18578Ef5EE04a25060b",
"apy": "1.00",
"underlying_asset": {
"symbol": "USDC",
"price_usdc": "1.001"
}
}
],
"exposure": [
{
"amount": "0.00010085",
"type": "spot",
"oracle_price": "67881.332239999995822497",
"price_usdc": "67882.123579999995822497",
"symbol": "WBTC"
},
{
"amount": "200",
"type": "spot",
"oracle_price": "1.000123375644",
"price_usdc": "1.000773721866666752",
"symbol": "USDT"
},
{
"amount": "500",
"type": "spot",
"oracle_price": "1",
"price_usdc": "1",
"symbol": "USDC"
},
{
"amount": "100",
"type": "spot",
"oracle_price": "1.00212332",
"price_usdc": "1.001148055",
"symbol": "USDe"
}
],
"groups": [
{
"network": "ethereum",
"protocol": "pendle",
"positions": [
{
"amount": "200",
"type": "spot",
"oracle_price": "1.000123375644",
"price_usdc": "1.000237322399999872",
"symbol": "USDT"
},
{
"amount": "500",
"type": "spot",
"oracle_price": "1",
"price_usdc": "1",
"symbol": "USDC"
},
{
"amount": "100",
"type": "spot",
"oracle_price": "1.00212332",
"price_usdc": "1.001148055",
"symbol": "USDe"
}
]
},
{
"network": "bybit",
"protocol": "N/A",
"positions": [
{
"amount": "0.00010085",
"type": "spot",
"oracle_price": "67881.332239999995822497",
"price_usdc": "67882.123579999995822497",
"symbol": "WBTC"
}
]
}
]
}
}Last updated