GET
/
vaults
/
{vault_id}
Vault Metadata
curl --request GET \
  --url https://0d.finance/api/v1/vaults/{vault_id}
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "inception_date": "<string>",
  "chain": "<string>",
  "chain_id": "<string>",
  "symbol": "<string>",
  "base_asset": "<string>",
  "status": "live",
  "tvl": "<string>",
  "share_price": "<string>",
  "mgmt_fee_bps": 123,
  "perf_fee_bps": 123,
  "strategy_brief": "<string>",
  "docs_url": "<string>",
  "contract": {
    "address": "<string>",
    "abi_version": "<string>"
  },
  "deposit_constraints": {
    "min_deposit": "<string>",
    "max_deposit": "<string>",
    "paused": true
  },
  "withdraw_constraints": {
    "instant_liquidity": true,
    "instant_slippage_max_bps": 123,
    "redeem_24h_threshold_pct_of_aum": 123,
    "redeem_48h_above_threshold": true
  },
  "icons": {
    "light": "<string>",
    "dark": "<string>"
  }
}

Path Parameters

vault_id
string
required

Stable vault identifier

Minimum length: 1

Response

Vault Metadata

The response is of type object.