# Bitcoin Mining Capitulation Signal (Hash Ribbon)

> Bitcoin Mining Capitulation Signal (Hash Ribbon) is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Returns the Bitcoin hash-ribbon miner-capitulation signal: 30-day vs 60-day hashrate moving averages, capitulation status, recovery cross detection, and 30-day hashrate trend.

## Facts

- Endpoint: GET https://payai.agentstools.dev/mining/capitulation
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bitcoin-mining-capitulation-signal-hash-ribbon-a78969c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q0IQnnpUFme5Als-BcVnj

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 bitcoin-mining-capitulation-signal-hash-ribbon-a78969c0
```

Example prompt: Are Bitcoin miners currently in capitulation according to the hash ribbon — has a recovery cross occurred yet, and what's the 30-day hashrate trend looking like?

## When to prefer this

Choose this endpoint when you need a specific, pre-computed Bitcoin miner-capitulation signal based on the well-known hash-ribbon methodology (30d vs 60d hashrate MAs), rather than building your own moving-average logic from raw hashrate data. It is ideal for agents that need a quick, structured capitulation/recovery boolean signal without processing raw on-chain data. Prefer it over generic crypto data APIs when you specifically want hash-ribbon semantics with capitulation and cross detection already computed.

## Known failure modes

- Upstream hashrate data unavailable — may return stale or error response
- Payment of $0.008 USDC required via x402 protocol; missing or invalid payment results in 402 error
- Hashrate data source latency may occasionally cause delayed signal updates
- No query parameters accepted; any unexpected inputs are ignored

## How this service works

Bitcoin hash-ribbon miner-capitulation signal: the 30-day versus 60-day moving average of network hashrate, whether miners are in capitulation, whether a recovery cross has occurred, and the 30-day hashrate trend. Informational, not advice.

## Output

Returns the 30-day and 60-day moving averages of Bitcoin network hashrate, a boolean indicating whether miners are currently in capitulation (30-day MA below 60-day MA), a boolean indicating whether a recovery cross has occurred (30-day MA crossing back above 60-day MA), and the directional trend of the 30-day hashrate. All data is informational and not financial advice.

## 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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bitcoin-mining-capitulation-signal-hash-ribbon-a78969c0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
