List markets
Cursor-paginated discovery list of indexed Morpho Blue markets. Rows contain immutable market identity and creation parameters only; dynamic state is exposed by the single-market state endpoint.
Query Parameters
cursor?string
Opaque pagination cursor.
limit?integer
Range
1 <= value <= 1000Default
100chain_id?array<>
Filter to one or more EVM chain IDs.
loan_token?array<>
Filter to one or more loan token asset selectors formatted as <chain_id>:.
collateral_token?string
listed?string
Filter to markets present in Morpho's public registry (true) or absent from it (false).
Value in
- "true"
- "false"
Response Body
application/json
curl -X GET "https://example.com/v1/blue/markets"{ "data": [ { "chain_id": 1, "market_id": "string", "loan_token": "string", "collateral_token": "string", "oracle_address": "string", "irm_address": "string", "lltv_wad": "string", "creation_block_number": "string", "creation_timestamp": 0 } ], "cursor": "string"}