Skip to main content

Complete lending metadata

GET 

/v1/data/meta/lending/complete

Returns the full lending-protocol metadata bundle for the requested chains and lenders. This is the single source of truth for static lender/chain/market configuration consumed by the SDKs and the position-builder UI.

Response includes, per (chainId, lenderKey):

  • Supported markets and their underlying assets (address, symbol, decimals, asset group)
  • Per-market risk parameters (LTV, liquidation threshold, factor, mode/e-mode IDs)
  • Pool configuration IDs and which markets are eligible as collateral / borrowable per config
  • Protocol contract addresses (pool, oracle, IRM, composer wiring)

Filter with chainIds and/or lenders to keep payloads small — both filters are AND-combined.

Plain-text reference — GET /v1/data/meta/lending/complete

Parameters

ParameterInTypeRequiredDescription
chainIdsquerystring[]noFilter by chain IDs (repeatable) See the ChainId schema for the full set of supported chains.
lendersquerystring[]noFilter by lender keys (repeatable) See the LenderId schema for the full set of accepted values.

Response 200

FieldTypeDescription
successTrue
dataobject
data.countintegerNumber of entries in items.
data.itemsobjectThe result set for this response.
actionsnull

Example response

{
"success": true,
"data": {
"count": 1,
"items": {}
}
}

Request

Responses

Lending metadata