# TokenGuard Trending NFTs

> TokenGuard Trending NFTs 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-14).

Returns a ranked list of trending NFT collections by current market activity and momentum

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/trending_nfts
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenguard-trending-nfts-99c36b55
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SO84cryNkf2lBVh-9z__U

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-nfts-99c36b55 -d '<json body>'
```

Example prompt: What NFT collections are trending right now? Show me the top movers by volume and momentum across the market.

## When to prefer this

Use this endpoint when you need real-time NFT trending data with on-chain backing via a micropayment-gated API. Prefer this over free aggregators when you need reliable, agent-accessible data with x402 payment support on Base, and when integrating into automated DeFi or NFT monitoring workflows.

## Known failure modes

- Empty response or empty JSON object if no trending data is available
- Rate limiting or payment failure if x402 micropayment of $0.01 USDC is not properly processed
- Service downtime on HuggingFace Spaces infrastructure causing 502 or 503 errors
- Stale or delayed data if on-chain indexing lags behind real-time blockchain state

## How this service works

trending nfts data for AI agents.

## Output

A JSON list of trending NFT collections ranked by market activity, likely including collection name, trading volume, price changes, number of transactions, and momentum indicators reflecting current on-chain popularity.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [],
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenguard-trending-nfts-99c36b55/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)
