# DESK LEAD x402 – BSC Yield Pools

> DESK LEAD x402 – BSC Yield Pools is a paid API for AI agents from desk-x402.desk-x402-gh.workers.dev, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Returns current yield pool data for assets on Binance Smart Chain (BSC), optionally filtered by asset symbol.

## Facts

- Endpoint: GET https://desk-x402.desk-x402-gh.workers.dev/v1/bsc-yield
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/desk-lead-x402-bsc-yield-pools-acde65c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QXoqOKsWnfjoz9efTpbXF

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 desk-lead-x402-bsc-yield-pools-acde65c2
```

Example prompt: Can you pull the current yield pool data from the BSC Yield API on DESK LEAD — I want to see what USDC pools are available on Binance Smart Chain right now?

## When to prefer this

Use this endpoint when you need current yield pool data specifically on Binance Smart Chain (BSC) and want a micropayment-gated research API with low per-call cost ($0.25 USDC). Prefer this over generic DeFi aggregators when you need a structured JSON response suitable for agent consumption and optionally want to filter by a specific asset like USDC.

## Known failure modes

- Empty pools array returned if no pools match the requested asset filter
- Payment not included or invalid — returns 402 Payment Required with x402 challenge
- Invalid asset query parameter format may return empty results silently
- Network mismatch — primary v2 only accepts Base (eip155:8453); legacy BSC payment path requires correct header setup
- Rate limiting or worker errors may return 5xx responses

## How this service works

Micropay research APIs (x402 v2 + bazaar). Free catalog at /.well-known/x402.json. Primary v2 accepts: Base eip155:8453 only. Legacy X-PAYMENT-TX still supports bsc|base via acceptsV1. Headers: X-PAYMENT-TX, X-PAYMENT-NETWORK, PAYMENT-SIGNATURE. No financial advice.

## Output

Returns a JSON object with an 'ok' boolean, a 'pools' array containing yield pool entries on BSC (may include pool name, asset, APY, and other metrics), and a 'product' field identifying this as the bsc_yield data product. Pool array may be empty if no matching pools are found.

## 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": {
      "asset": {
       "type": "string",
       "description": "Filter asset e.g. USDC"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "pools": [],
  "product": "bsc_yield"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/desk-lead-x402-bsc-yield-pools-acde65c2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from desk-x402.desk-x402-gh.workers.dev](https://www.zero.xyz/host/desk-x402.desk-x402-gh.workers.dev/llms.txt)
