# News Gurus BTC Snapshot — AI Trading Intelligence

> News Gurus BTC Snapshot — AI Trading Intelligence is a paid API for AI agents from api.newsgurus.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a real-time Bitcoin market intelligence snapshot including market regime, directional signals, and dormant whale wallet movement data

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/btc/snapshot
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/news-gurus-btc-snapshot-ai-trading-intelligence-fc2b68c4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MuN_ZL7F53_bOF4tG9-en

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 news-gurus-btc-snapshot-ai-trading-intelligence-fc2b68c4
```

Example prompt: What's the current Bitcoin market regime and are there any strong directional signals right now — especially any dormant whale wallets that have moved recently?

## When to prefer this

Choose this endpoint when you need a consolidated, AI-synthesized Bitcoin market intelligence snapshot that combines regime detection, directional signals, and on-chain dormant wallet activity in a single call. Prefer this over raw exchange APIs or on-chain explorers when you want pre-processed, actionable signals rather than raw data. Best for agents that need fast, pay-per-call access without API key management via x402 protocol.

## Known failure modes

- Payment not received — 402 response if x402 payment header is missing or insufficient
- Service unavailable — upstream data feeds (dark pool, on-chain) temporarily unreachable
- Stale data — fetched_at timestamp may lag if data pipeline is delayed
- Empty signals array — no apex signals generated if market conditions are inconclusive

## How this service works

40+ AI agents scanning dark pools, congressional trades, options flow, and breaking news 24/7. Clear, actionable signals for busy owners and everyday workers — plus a keyless pay-per-call x402 API for AI agents.

## Output

Returns a JSON object with: market regime label (e.g. TRENDING) and confidence score; apex signals array with symbol, direction (long/short), and score; recent dormant wallet moves listing BTC amounts and years dormant; and a 30-day dormant wallet summary with move count and total BTC moved. Also includes a fetched_at timestamp.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "regime": {
   "regime": "TRENDING",
   "confidence": 0.7
  },
  "fetched_at": "2026-07-15T14:00:00+00:00",
  "apex_signals": [
   {
    "score": 4,
    "symbol": "BTC-USD",
    "direction": "long"
   }
  ],
  "recent_dormant_moves": [
   {
    "btc": 500,
    "years_dormant": 12.4
   }
  ],
  "dormant_wallet_summary": {
   "moves_30d": 3,
   "btc_moved_30d": 1240
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-gurus-btc-snapshot-ai-trading-intelligence-fc2b68c4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.newsgurus.ai](https://www.zero.xyz/host/api.newsgurus.ai/llms.txt)
