# TokenGuard Trending Crypto & NFT

> TokenGuard Trending Crypto & NFT is a paid API for AI agents from eltociear-tokenguard.hf.space, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns a list of currently trending cryptocurrencies and NFTs with price data, rankings, and market scores

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/trending
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenguard-trending-crypto-nft-50e3d42a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__bO7AkROa5MyeeKzEW64B

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 tokenguard-trending-crypto-nft-50e3d42a -d '<json body>'
```

Example prompt: What crypto coins and NFTs are trending right now? Give me the top ones with their current prices and 24-hour price changes.

## When to prefer this

Use this endpoint when an agent needs real-time trending crypto and NFT data in a single call, especially when building market dashboards, alerting on momentum, or surfacing hot assets to users. Prefer over manual CoinGecko lookups when you need both coins and NFTs trending in one response with micropayment simplicity via x402.

## Known failure modes

- Payment not provided or insufficient USDC — 402 Payment Required
- Service temporarily unavailable on Hugging Face Space — 503 or timeout
- Empty trending list if market data feed is stale or unavailable
- Malformed response if underlying data provider is down

## How this service works

Top trending crypto coins + NFTs by search volume (CoinGecko, free, no API key). Price, 24h change, sparkline, market cap rank.

## Output

Returns a JSON object with counts of trending coins and NFTs, a list of trending coins (name, symbol, rank, score, USD price, 24h price change), and a list of trending NFTs (name, ETH floor price).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "description": "Max trending coins to return 1-25 (default 10)"
  },
  "category": {
   "type": "string",
   "description": "Category label (cosmetic, default 'all')"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "nfts_count": 3,
  "coins_count": 7,
  "trending_nfts": [
   {
    "name": "Pudgy Penguins",
    "floor_price_eth": 6.5
   }
  ],
  "trending_coins": [
   {
    "name": "Bitcoin",
    "rank": 1,
    "score": 0,
    "symbol": "BTC",
    "price_usd": 67000,
    "price_change_24h": 2.3
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenguard-trending-crypto-nft-50e3d42a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from eltociear-tokenguard.hf.space](https://www.zero.xyz/host/eltociear-tokenguard.hf.space/llms.txt)
