Aqua0
API ReferenceVaults

Get an LP's combined cross-chain backable capacity for one asset

READ-ONLY DISPLAY VIEW. Aggregates the LP's free principal for one asset symbol across every fleet chain where a vault for it is deployed, netted per chain against pending withdrawals and active backing earmarks. This view does not reserve anything and can be momentarily stale -- committing capital always re-reads and reserves atomically at authorization time.

GET
/api/vaults/backing/{symbol}/{lp}

Authorization

ApiKeyAuth
X-API-Key<token>

In: header

Path Parameters

symbol*string
lp*string

The liquidity provider's wallet address.

Response Body

application/json

curl -X GET "https://example.com/api/vaults/backing/string/string"
{  "symbol": "string",  "lp": "string",  "total": "string",  "perChain": [    {      "chainId": 0,      "vault": "string",      "asset": "string",      "headroom": "string"    }  ],  "degraded": true}
Empty