Skip to content

List venues

GET /v1/venues

Return the configured yield venues, optionally filtered by chain. Each venue reports its vault address, indicative APY in basis points, risk tier, and a health flag. Unhealthy venues are excluded from rate aggregation and auctions.

Parameters

Name In Type Required Description
chain query integer no Only return venues on this chain id.

Responses

Status Description
200 The list of venues.
200 response
{
  "success": true,
  "data": [
    {
      "id": "mockvault-84532",
      "name": "Edith Mock Vault",
      "protocol": "MockVault4626",
      "chain": 84532,
      "asset": "0x81ab7e0d570b01411fcefcbbcd7de70890a5dd15",
      "vault": "0x9d4454b023096f34b160d6b654540c56a1f81688",
      "apyBps": 500,
      "riskTier": "balanced",
      "healthy": true
    }
  ],
  "timestamp": "2026-07-29T10:15:32.123Z"
}