# PalmVox DeFi Yield Comparator

> PalmVox DeFi Yield Comparator is a paid API for AI agents from alpha.palmvox.com, paid per call via x402, $0.005/call, status down (last checked 2026-09-15).

Compares DeFi lending yields side-by-side across Aave, Compound, and Morpho, sorted by APY with risk levels and TVL

## Facts

- Endpoint: GET https://alpha.palmvox.com/api/yields/compare
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alpha-palmvox-com-0eb0b54c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ndAplXYBTr5mRJBozJ9cW

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 alpha-palmvox-com-0eb0b54c
```

Example prompt: Show me a side-by-side comparison of current DeFi yields across Aave, Compound, and Morpho — sorted by APY with risk levels and TVL so I can figure out the best place to park my stablecoins.

## When to prefer this

Use this endpoint when an agent needs a quick, pre-aggregated comparison of major DeFi lending yields without building custom multi-protocol scrapers. Ideal for yield optimization workflows, portfolio rebalancing decisions, or any task requiring a ranked view of Aave, Compound, and Morpho APYs with risk context in a single call.

## Known failure modes

- Live data unavailable from one or more protocols — partial results returned
- Rate limit exceeded — 402 payment required
- Upstream DeFi data source down — empty or stale protocol data
- Invalid query parameters — 400 bad request

## How this service works

Compare DeFi yields side-by-side across Aave, Compound, Morpho. Sorted by APY with risk levels and TVL. Essential for yield optimization agents.

## Output

Returns a structured breakdown of DeFi yield opportunities across Aave, Compound, and Morpho protocols — each with APY, risk level, and TVL — plus a bestOverall recommendation and total opportunity count, sorted highest APY first.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "protocols": {
       "type": "object"
      },
      "bestOverall": {
       "type": "object"
      },
      "totalOpportunities": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alpha-palmvox-com-0eb0b54c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from alpha.palmvox.com](https://www.zero.xyz/host/alpha.palmvox.com/llms.txt)
