POST
/
vaults
/
{vault_id}
/
liquidity
/
simulate
Estimate instant slippage or scheduled withdrawal windows
curl --request POST \
  --url https://0d.finance/api/v1/vaults/{vault_id}/liquidity/simulate \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": "2000000"
}'
{
  "amount": "2000000",
  "instant": {
    "supported": true,
    "est_slippage_bps": 18,
    "cap_remaining": "5000000"
  },
  "scheduled": [
    {
      "window": "24h",
      "max_without_delay": "3000000",
      "expected_nav_date": "2025-10-24T12:00:00Z"
    },
    {
      "window": "48h",
      "expected_nav_date": "2025-10-25T12:00:00Z"
    }
  ]
}

Path Parameters

vault_id
string
required

Stable vault identifier

Minimum length: 1

Body

application/json

Response

Simulation result

The response is of type object.