/marketsList every asset listed by the vault. Returns LTV, liquidation threshold, stale window, current price.| Name | Type | Required | Description |
|---|---|---|---|
| status | string | optional | filter by 'listed' | 'paused' | 'delisted' |
| limit | int | optional | 1–200 · default 50 |
| cursor | string | optional | opaque pagination cursor from prev response |
curl -s https://api.equiflow.io/v1/markets?status=listed \ -H "X-EquiFlow-Key: $EF_KEY"
{
"data": [
{
"symbol": "TSLA",
"token": "0x91f2…b4Ae",
"feedId": "0x16d…a92c",
"priceUsd": "256.4180",
"ltvBps": 6500,
"liqThresholdBps": 7500,
"staleAfterSec": 60,
"totalCollateralUsd": "4218904.55",
"status": "listed"
},
{
"symbol": "NVDA",
"token": "0xD81e…F022",
"priceUsd": "118.9100",
"ltvBps": 6500,
"liqThresholdBps": 7500,
"totalCollateralUsd": "7194028.10",
"status": "listed"
}
],
"cursor": null,
"fetchedAt": "2026-05-20T14:02:11Z"
}