Aqua0
API ReferenceVaults

Get an LP's per-strategy backing in an asset vault

Returns, for one LP in one asset vault, the strategies it backs with per-strategy detail (amount deployed, fees accrued, shortfall charged).

GET
/api/vaults/positions/{chainId}/{asset}/{lp}/strategies

Authorization

ApiKeyAuth
X-API-Key<token>

In: header

Path Parameters

chainId*string

Numeric ID of the chain to query or act on.

asset*string

The vault's underlying asset, as a token contract address (0x-prefixed).

lp*string

The liquidity provider's wallet address.

Response Body

application/json

curl -X GET "https://example.com/api/vaults/positions/string/string/string/strategies"
{  "fleetLive": true,  "rpcDegraded": true,  "strategies": [    {      "chainId": 0,      "vault": "string",      "lp": "string",      "strategyId": "string",      "backing": true,      "deployedInto": "string",      "feeAccrued": "string",      "shortfallCharged": "string"    }  ]}