# PalmVox Trending Cryptocurrencies

> PalmVox Trending Cryptocurrencies 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 current list of trending cryptocurrencies from CoinGecko, including name, symbol, market rank, trend score, and BTC price.

## Facts

- Endpoint: GET https://alpha.palmvox.com/api/trending/coins
- 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-85b74337
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AQpPLZliEUy4ECgr6aiB2

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-85b74337
```

Example prompt: What cryptocurrencies are trending right now? Pull the live CoinGecko trending list and show me the names, symbols, market ranks, and BTC prices.

## When to prefer this

Use this endpoint when you need a real-time snapshot of which cryptocurrencies the market is currently watching, ranked by trending momentum from CoinGecko. Prefer this over general market cap endpoints when the goal is to surface coins with current social/trading momentum rather than established dominance.

## Known failure modes

- CoinGecko API unavailable — upstream data source outage
- Payment failure — insufficient USDC balance or x402 payment not accepted
- Empty trending list if CoinGecko returns no trending data
- Network timeout on the upstream CoinGecko call

## How this service works

Trending cryptocurrencies right now — from CoinGecko trending API. What the market is watching. Updated every request.

## Output

Returns a list of up to 10 currently trending cryptocurrencies sourced from CoinGecko, each with name, symbol, market rank, trend score (position 0-9), and current price in BTC. Response includes a count and source label.

## Example request

```json
{
 "query": "{\\\"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": {
      "count": {
       "type": "number"
      },
      "source": {
       "type": "string"
      },
      "trending": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "count",
  "source",
  "trending",
  "trackRecord",
  "alsoAvailable"
 ],
 "properties": {
  "count": {
   "type": "number"
  },
  "source": {
   "type": "string"
  },
  "trending": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "name",
     "rank",
     "score",
     "symbol",
     "price_btc"
    ],
    "properties": {
     "name": {
      "type": "string"
     },
     "rank": {
      "type": "number"
     },
     "score": {
      "type": "number"
     },
     "symbol": {
      "type": "string"
     },
     "price_btc": {
      "type": "number"
     }
    }
   }
  },
  "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-85b74337/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)
