# Cambrian x402 Morpho Markets Data

> Cambrian x402 Morpho Markets Data is a paid API for AI agents from x402.cambrian.org, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns a list of active Morpho lending markets on EVM chains, including market parameters and pool data.

## Facts

- Endpoint: GET https://x402.cambrian.org/evm/lending/morpho/markets
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cambrian-x402-morpho-markets-data-8a374362
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2l2PJE9gqrjfbUoNO8i_8

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability cambrian-x402-morpho-markets-data-8a374362
```

Example prompt: Fetch the current list of active Morpho lending markets on EVM — I want to see what loan tokens, collateral tokens, and market parameters are available right now.

## When to prefer this

Use this endpoint when you need structured, pay-per-use access to Morpho Protocol lending market data on EVM chains without running your own indexer. Prefer it over self-hosted solutions when operating an autonomous agent that needs on-demand market data with micropayment billing via x402.

## Known failure modes

- No markets returned if chain is unsupported or query params are malformed
- 402 Payment Required if the x402 payment header is missing or insufficient
- Empty array if no Morpho markets are currently indexed
- Timeout or 503 if the underlying blockchain node is unreachable

## How this service works

Pay-per-use blockchain and social data for autonomous agents.

## Output

Returns an array of Morpho lending market objects, each describing a market's parameters such as loan token, collateral token, interest rate model, oracle, liquidation loan-to-value, and other on-chain configuration details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "additionalProperties": true
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "array"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "array"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cambrian-x402-morpho-markets-data-8a374362/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.cambrian.org](https://www.zero.xyz/host/x402.cambrian.org/llms.txt)
