Skip to main content
GET
/
api
/
v1
/
vaults
Get public vaults
curl --request GET \
  --url https://api.mainnet.aptoslabs.com/decibel/api/v1/vaults \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "address": "<string>",
      "created_at": 123,
      "manager": "<string>",
      "name": "<string>",
      "status": "<string>",
      "all_time_pnl": 123,
      "all_time_return": 123,
      "apr": 123,
      "average_leverage": 123,
      "depositors": 123,
      "description": "<string>",
      "lockdown_period_s": 259200,
      "manager_cash_pct": 123,
      "max_drawdown": 123,
      "net_deposits": 30277044.96,
      "past_month_return": 123,
      "perp_equity": 123,
      "pnl_90d": 123,
      "profit_share": 123,
      "sharpe_ratio": 123,
      "social_links": [
        "<string>"
      ],
      "tvl": 123,
      "vault_type": "<string>",
      "volume": 123,
      "volume_30d": 123,
      "weekly_win_rate_12w": 123
    }
  ],
  "total_count": 1,
  "total_value_locked": 123,
  "total_volume": 123
}

Authorizations

Authorization
string
header
required

Bearer token from Geomi. See Authentication for setup instructions.

Query Parameters

vault_type
string

Vault type filter ('user' or 'protocol'). If not provided, returns all vaults.

vault_address
string

Vault address filter. If provided, returns only the vault with this address.

Search filter. If provided, filters vaults by vault address, vault name, or manager address (case-insensitive).

sorting
object
required

Sorting parameters Generic sorting parameters

Response

Public vaults retrieved successfully

items
object[]
required
total_count
integer<int32>
required
Required range: x >= 0
total_value_locked
number<double>
required

Total value locked across all filtered vaults

total_volume
number<double>
required

Total all-time trading volume across all filtered vaults