# PalmVox Base Trending

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

Returns trending tokens, hottest DeFi yield pools, and market sentiment for the Base blockchain ecosystem, updated every scan cycle.

## Facts

- Endpoint: GET https://alpha.palmvox.com/api/trending/base
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alpha-palmvox-com-d1c0d7ea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NKqzv6h6RZRrbVmMozho8

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-d1c0d7ea
```

Example prompt: What tokens and DeFi pools are trending on Base right now, and what's the overall market sentiment?

## When to prefer this

Use this endpoint when you specifically need trending token and DeFi yield data scoped to the Base blockchain ecosystem. Prefer this over generic crypto trending APIs when Base-native protocols and tokens are the focus, or when you want a combined view of price momentum, yield opportunities, and sentiment in a single call.

## Known failure modes

- Stale data if scan cycle has not recently completed — check lastUpdated field
- Confidence levels may be LOW for volatile tokens — interpret trending data cautiously
- Payment failure (x402) if USDC balance insufficient — returns 402 status
- No Base-specific data available if indexing is temporarily down — empty trending array

## How this service works

What's trending on Base right now — top moving tokens, hottest DeFi pools, and social buzz. Updated every scan cycle. Zero competition on Bazaar for Base-specific trending.

## Output

Returns an array of trending tokens with price, percent change, and confidence level; an array of hot yield opportunities with protocol name, APY, and TVL; an overall market sentiment string (e.g. 'neutral'); and a lastUpdated ISO timestamp. Also includes a link to a free track record endpoint and references to sibling 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": {
      "trending": {
       "type": "array"
      },
      "hotYields": {
       "type": "array"
      },
      "sentiment": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "trending",
  "hotYields",
  "sentiment",
  "lastUpdated",
  "trackRecord",
  "alsoAvailable"
 ],
 "properties": {
  "trending": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "price",
     "token",
     "change",
     "confidence"
    ],
    "properties": {
     "price": {
      "type": "number"
     },
     "token": {
      "type": "string"
     },
     "change": {
      "type": "string"
     },
     "confidence": {
      "type": "string"
     }
    }
   }
  },
  "hotYields": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "apy",
     "protocol",
     "description"
    ],
    "properties": {
     "apy": {
      "type": "number"
     },
     "protocol": {
      "type": "string"
     },
     "description": {
      "type": "string"
     }
    }
   }
  },
  "sentiment": {
   "type": "string"
  },
  "lastUpdated": {
   "type": "string"
  },
  "trackRecord": {
   "type": "string"
  },
  "alsoAvailable": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "url",
     "note",
     "price"
    ],
    "properties": {
     "url": {
      "type": "string"
     },
     "note": {
      "type": "string"
     },
     "price": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

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