# PalmVox DeFi Best Yield

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

Returns the single highest-yielding DeFi opportunity right now, including protocol name, token, APY, TVL, chain, and risk level.

## Facts

- Endpoint: GET https://alpha.palmvox.com/api/defi/best
- Price: $0.003/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-9fc0f38d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rRgOH5MVgmxdP_JCMZ9bj

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-9fc0f38d
```

Example prompt: What's the single best DeFi yield available right now — give me the protocol, token, APY, TVL, and risk level so I can decide where to auto-compound.

## When to prefer this

Use this endpoint when you need the single best DeFi yield in one cheap call ($0.003) without filtering by token or chain. Prefer over /api/yields/best (more expensive at $0.005) when you just need the top result. Choose the search endpoint (/api/defi/yields/search) instead if you need yields filtered by specific token, chain, or minimum APY.

## Known failure modes

- Upstream yield data unavailable — may return stale or empty best yield
- Payment required error if x402 payment header not provided
- Rate limiting if called too frequently without valid payment
- Yield data may lag real-time market conditions by minutes

## How this service works

Single best DeFi yield right now — protocol, token, APY, TVL, and risk level. Cheapest yield data on x402. Perfect for agents auto-compounding yields.

## Output

Returns a single best-yield object with protocol name (e.g. 'Aave (Ethereum)'), token, APY as a number, TVL in USD, chain, risk level (e.g. MEDIUM), and a human-readable description. Also includes total number of yields tracked and links to related endpoints.

## 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": {
      "apy": {
       "type": "number"
      },
      "risk": {
       "type": "string"
      },
      "protocol": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "best",
  "totalYields",
  "trackRecord",
  "alsoAvailable"
 ],
 "properties": {
  "best": {
   "type": "object",
   "required": [
    "apy",
    "tvl",
    "risk",
    "chain",
    "protocol",
    "description"
   ],
   "properties": {
    "apy": {
     "type": "number"
    },
    "tvl": {
     "type": "number"
    },
    "risk": {
     "type": "string"
    },
    "chain": {
     "type": "string"
    },
    "protocol": {
     "type": "string"
    },
    "description": {
     "type": "string"
    }
   }
  },
  "totalYields": {
   "type": "number"
  },
  "trackRecord": {
   "type": "string"
  },
  "alsoAvailable": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "url",
     "price"
    ],
    "properties": {
     "url": {
      "type": "string"
     },
     "price": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alpha-palmvox-com-9fc0f38d/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)
