# ADH Altseason Index Signal

> ADH Altseason Index Signal is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns the current crypto altseason index, including BTC dominance, 30-day outperformers, and market regime classification (altseason / neutral / bitcoin season).

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/processed-altseason
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/adh-altseason-index-signal-b4c9b2ad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mO77G6O33XxWyhhuKSYLT

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-altseason-index-signal-b4c9b2ad
```

Example prompt: What's the current altseason index — are we in altseason, bitcoin season, or neutral right now, and which top altcoins are outperforming BTC over the last 30 days?

## When to prefer this

Choose this endpoint when you need a single, pre-processed crypto market regime signal that aggregates 30-day performance across the top 50 non-stablecoin assets relative to BTC — ideal for agents that need a clean, labeled altseason/neutral/bitcoin-season classification without doing raw market-cap and return calculations themselves. It is especially useful for routing portfolio decisions, generating market briefings, or triggering regime-aware trading alerts at $0.05 USDC per call via x402 micropayment.

## Known failure modes

- Upstream data source unavailable — returns error or stale data
- Rate limiting or payment failure via x402 — returns 402 Payment Required
- Temporary service outage on agentdatum.com — returns 5xx error
- Data freshness lag if upstream aggregation pipeline is delayed

## How this service works

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

## Output

Returns a JSON object with: altseason index score (0-100, ≥75 = altseason, ≤25 = bitcoin season), current season label in English and Chinese, BTC 30-day percent change, BTC dominance percentage, sample size (top 50 non-stablecoin coins), count of outperformers, and a list of top outperforming altcoins with their symbols and 30-day returns. Also includes data source identifier and collection timestamp.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ]
    },
    "queryParams": {
     "type": "object",
     "properties": {},
     "required": []
    }
   },
   "required": [
    "type",
    "method"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "raw": {
   "rule": "Top50(剔稳定币) 中 30 日涨幅跑赢 BTC 的占比；>=75 山寨季，<=25 比特币季",
   "season": "Neutral",
   "season_zh": "中性过渡",
   "btc_30d_pct": 1.6,
   "sample_size": 50,
   "outperformers": 15,
   "altseason_index": 30,
   "btc_dominance_pct": 56.3,
   "top_outperformers": [
    {
     "name": "Monero",
     "symbol": "xmr",
     "chg_30d": 21.2
    },
    {
     "name": "Monero",
     "symbol": "xmr",
     "chg_30d": 21.2
    }
   ]
  },
  "source": "altseason_index",
  "data_type": "金融信号",
  "collected_at": "2026-08-09T18:18:04Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-altseason-index-signal-b4c9b2ad/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)
