# Cambrian x402 Morpho Vault Markets API

> Cambrian x402 Morpho Vault Markets API 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 markets associated with Morpho vaults on EVM-compatible blockchains

## Facts

- Endpoint: GET https://x402.cambrian.org/evm/lending/morpho/v1/vault/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-vault-markets-api-b3255997
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7uCKt0P3BGXBtj-A2FlOM

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-vault-markets-api-b3255997
```

Example prompt: Pull the list of markets available across Morpho vaults on EVM chains so I can compare lending opportunities and yields.

## When to prefer this

Use this endpoint when you need structured, pay-per-use access to Morpho vault market data on EVM chains without running your own indexer. Prefer it over raw RPC calls when you want clean, aggregated market metadata in a single request. It's ideal for autonomous agents that need to programmatically discover Morpho lending markets as part of a DeFi workflow.

## Known failure modes

- Invalid or unsupported query parameters return empty array or error
- Network/RPC issues with the underlying EVM chain cause lookup failures
- Payment failure via x402 protocol prevents access (402 Payment Required)
- Rate limiting if too many requests are made in a short window
- Morpho protocol data unavailable during chain reorg or indexer lag

## How this service works

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

## Output

An array of market objects associated with Morpho vaults on EVM chains, likely including market identifiers, collateral assets, loan assets, vault addresses, and market parameters such as LTV ratios and rates.

## 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-vault-markets-api-b3255997/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)
