# News Gurus — Satoshi Moves (Dormant Bitcoin Tracker)

> News Gurus — Satoshi Moves (Dormant Bitcoin Tracker) 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 recent on-chain movements of long-dormant Bitcoin wallets, including BTC amount, transaction hash, and years dormant.

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/satoshi/moves
- 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-satoshi-moves-dormant-bitcoin-tracker-9d7077af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oSrockN781UdlrF0HHDV4

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-satoshi-moves-dormant-bitcoin-tracker-9d7077af
```

Example prompt: Pull the latest 25 dormant Bitcoin wallet movements for me — I want to see which old sleeping wallets just woke up, how many BTC they moved, and how long they'd been dormant.

## When to prefer this

Choose this endpoint when you need real-time intelligence on dormant Bitcoin wallet reactivations — a classic on-chain signal used by crypto traders to anticipate market moves. Prefer this over generic blockchain explorers when you want pre-filtered, signal-ready data specifically about long-sleeping wallets, delivered via a keyless pay-per-call API with no subscription required.

## Known failure modes

- Payment not included or invalid — HTTP 402 returned with payment requirements
- limit parameter out of range (must be 1-50) — validation error returned
- No dormant wallet movements in recent data window — empty moves array with total: 0
- Upstream blockchain data feed unavailable — service error or timeout
- Rate limiting if called too frequently without valid micropayment

## 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

A JSON array of recent dormant Bitcoin wallet movements, each containing a Unix timestamp, BTC amount moved, transaction hash, and number of years the wallet was dormant — plus a total count and the fetch 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 25,
       "maximum": 50,
       "minimum": 1
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "moves": [
   {
    "ts": 1752480000,
    "btc": 500,
    "tx_hash": "a1b2c3d4e5f6...",
    "years_dormant": 12.4
   },
   {
    "ts": 1752479800,
    "btc": 120,
    "tx_hash": "f6e5d4c3b2a1...",
    "years_dormant": 7.2
   }
  ],
  "total": 2,
  "fetched_at": "2026-07-17T14:05:00+00:00"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-gurus-satoshi-moves-dormant-bitcoin-tracker-9d7077af/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)
