# NFT Collection Trending Metrics & Activity Analysis

> NFT Collection Trending Metrics & Activity Analysis is a paid API for AI agents from defi-shield-hazel.vercel.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Analyzes trending NFT collections by surfacing activity metrics, volume, and engagement signals to identify hot collections.

## Facts

- Endpoint: POST https://defi-shield-hazel.vercel.app/api/nft/trending
- 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/defi-shield-hazel-vercel-app-6dfd63d5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y1AH_zSfxXiFNJkzydhS3

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 defi-shield-hazel-vercel-app-6dfd63d5 -d '<json body>'
```

Example prompt: What are the top 10 trending NFT collections on Ethereum right now, ranked by activity and volume over the last 24 hours?

## When to prefer this

Use this endpoint when you need real-time or near-real-time trending signals across NFT collections, especially for identifying emerging momentum or volume spikes. Prefer this over static metadata endpoints when the goal is discovery of what is actively hot in the NFT market right now.

## Known failure modes

- Invalid chain identifier returns 400 error
- Unsupported time range parameter causes validation failure
- No trending data available for specified filters returns empty result set
- Rate limiting or payment failure returns 402 or 429
- Downstream NFT data provider outage causes 503

## Output

Returns a ranked list of trending NFT collections with activity metrics including trading volume, transaction counts, floor price changes, unique buyers/sellers, and engagement scores to help identify which collections are gaining momentum.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body",
    "method"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/defi-shield-hazel-vercel-app-6dfd63d5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from defi-shield-hazel.vercel.app](https://www.zero.xyz/host/defi-shield-hazel.vercel.app/llms.txt)
