# basefeed Yield Scout — Morpho Stablecoin Yield Pack

> basefeed Yield Scout — Morpho Stablecoin Yield Pack is a paid API for AI agents from api.basefeed.io, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Fetches live Morpho Blue stablecoin yield opportunities on Base chain, with optional filtering by minimum TVL and a token watch list

## Facts

- Endpoint: GET https://api.basefeed.io/v1/pack/yield-scout
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/basefeed-yield-scout-morpho-stablecoin-yield-pack-09f65766
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lQy1lLwxrrioRrlIYQVI5

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 basefeed-yield-scout-morpho-stablecoin-yield-pack-09f65766
```

Example prompt: What are the top 5 stablecoin yield opportunities on Morpho Blue right now on Base, only showing markets with at least $500,000 TVL?

## When to prefer this

Use this endpoint when you need live, on-chain Morpho Blue stablecoin yield data specifically on Base chain and want to filter by TVL or watch specific tokens. Prefer this over generic DeFi aggregators when you need pay-per-call access with no API key, or when building agents that need real-time Base chain yield data without a subscription commitment.

## Known failure modes

- Payment not included or insufficient — returns 402 Payment Required
- Invalid or unsupported query parameters — returns 400 Bad Request
- Morpho Blue data temporarily unavailable upstream — returns 503 or degraded response
- min_tvl too high — returns empty results set with ok: true but no markets
- Rate limit exceeded — possible 429 response

## How this service works

Live Base gas, Morpho stablecoin yields, and ERC-20 token metadata. Pay per call in USDC on Base through x402. No signup. No API key.

## Output

Returns a JSON object with ok: true, the pack name 'yield-scout', and a list of Morpho Blue stablecoin yield markets on Base including yield rates (APY), TVL, and market identifiers, filtered by the optional limit, watch, and min_tvl parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer"
      },
      "watch": {
       "type": "string"
      },
      "min_tvl": {
       "type": "integer"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "pack": "yield-scout"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/basefeed-yield-scout-morpho-stablecoin-yield-pack-09f65766/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.basefeed.io](https://www.zero.xyz/host/api.basefeed.io/llms.txt)
