# Bitcoin Hash Ribbon Miner Capitulation Signal

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

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

## Facts

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

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-hash-ribbon-miner-capitulation-signal-65596b51
```

Example prompt: Are Bitcoin miners currently in capitulation? Check the hash ribbon signal and tell me if the 30-day hashrate is below the 60-day, whether a recovery cross has happened, and what the 30-day trend looks like.

## When to prefer this

Use this endpoint when you need a quick, cheap, single-call signal for Bitcoin miner capitulation based on hash ribbons — specifically the 30/60-day moving average crossover — without needing to compute it yourself from raw hashrate time series. Prefer this over general on-chain analytics platforms when you only need the capitulation signal and recovery cross flag in a lightweight, agent-friendly response.

## Known failure modes

- Upstream hashrate data unavailable causing stale or missing values
- Payment not accepted or x402 auth failure resulting in 402 response
- Network timeout from hashrate data provider
- Hashrate data lag meaning signal may reflect slightly delayed state

## 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 a JSON object containing the 30-day and 60-day moving averages of Bitcoin network hashrate, a boolean or flag indicating whether miners are in capitulation, whether a recovery cross has occurred, and the 30-day hashrate trend direction or value.

## 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-hash-ribbon-miner-capitulation-signal-65596b51/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
