# ADH Crypto Trending Intelligence

> ADH Crypto Trending Intelligence is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns real-time trending cryptocurrencies, NFTs, and token categories with price, market cap, and 24-hour change data aggregated from multiple sources.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/crypto-trending
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/adh-crypto-trending-intelligence-16a07e86
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MgkAQRrZRiOUyQJ8kqeuW

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 adh-crypto-trending-intelligence-16a07e86
```

Example prompt: What are the top trending cryptocurrencies and NFTs right now, including their prices, market caps, and 24-hour changes?

## When to prefer this

Use this endpoint when you need a fast, multi-asset trending snapshot across coins, NFTs, and categories in a single call — especially useful for daily briefings, momentum screens, or enriching AI agent context with current crypto market sentiment. Prefer this over raw exchange APIs when you want pre-aggregated, entity-resolved data without managing multiple upstream integrations.

## Known failure modes

- Payment not settled via x402 — endpoint returns 402 Payment Required
- Source unavailable — upstream CoinGecko data may be stale or missing
- Empty arrays returned if no trending data is available at query time
- Rate limiting if calls exceed plan quota
- chg_24h field may be null for some NFT entries if price change data is unavailable

## How this service works

ADH 金融情报层：把 239 个原始数据源洗成带实体解析、时间同步、溯源与派生结论的情报（宏观regime / 加密尽调 / 事件窗口），免费注入你的 AI 上下文。Agent 走 x402 结算，人类订阅（PayPal）即将上线。

## Output

Returns a JSON object with three lists: trending_coins (name, symbol, rank, price_usd, mcap, chg_24h), trending_nfts (name, floor price in ETH, chg_24h), and trending_categories (name, chg_24h). Also includes the data source identifier (cg_trending), data type label, and a collected_at UTC timestamp.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "raw": {
   "trending_nfts": [
    {
     "name": "StonkBrokers",
     "floor": "11.98 ETH",
     "chg_24h": null
    },
    {
     "name": "StonkBrokers",
     "floor": "11.98 ETH",
     "chg_24h": null
    }
   ],
   "trending_coins": [
    {
     "mcap": "$1,138,217,313",
     "name": "Pump.fun",
     "rank": 62,
     "symbol": "PUMP",
     "chg_24h": 5.410996058902741,
     "price_usd": 0.00290021019700389
    },
    {
     "mcap": "$1,138,217,313",
     "name": "Pump.fun",
     "rank": 62,
     "symbol": "PUMP",
     "chg_24h": 5.410996058902741,
     "price_usd": 0.00290021019700389
    }
   ],
   "trending_categories": [
    {
     "name": "Pons Launchpad",
     "chg_24h": 0.7761679972436303
    },
    {
     "name": "Pons Launchpad",
     "chg_24h": 0.7761679972436303
    }
   ]
  },
  "source": "cg_trending",
  "data_type": "区块链",
  "collected_at": "2026-08-14T00:13:51Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-crypto-trending-intelligence-16a07e86/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
