# Bitcoin Timing Indicators Dashboard

> Bitcoin Timing Indicators Dashboard is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a multi-indicator Bitcoin valuation dashboard including AHR999, Mayer Multiple, 200-week MA deviation, and Pi-Cycle Top proximity, each with zone classification and buy/hold/caution signal.

## Facts

- Endpoint: GET https://api.agentstools.dev/timing/indicators
- 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/bitcoin-timing-indicators-dashboard-ba1e46a1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HePYOUy47PJ6kEoR1mkx-

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-timing-indicators-dashboard-ba1e46a1
```

Example prompt: Pull up the Bitcoin valuation dashboard — I want to see the AHR999, Mayer Multiple, 200-week MA deviation, and Pi-Cycle Top proximity all at once with their current zones and signals.

## When to prefer this

Choose this endpoint when you need a comprehensive, keyless Bitcoin cycle valuation snapshot combining multiple indicators in a single call. Prefer it over individual metric APIs when you want AHR999, Mayer Multiple, 200-week MA, and Pi-Cycle Top all together with pre-computed zone and signal classifications. It is ideal for agents making automated accumulation or exit decisions based on historical Bitcoin valuation models.

## Known failure modes

- Invalid asset key returns error (AHR999 is Bitcoin-only; ETH may return partial results)
- MVRV data unavailable without a data key — returned as honest scaffold/null
- DefiLlama upstream outage may cause stale or missing price data
- Malformed request returns 400-level error
- Payment not completed (x402) results in 402 Payment Required response

## How this service works

Bitcoin valuation dashboard in one call: AHR999, Mayer Multiple, 200-week MA deviation and Pi-Cycle Top proximity, each with its own zone and signal. MVRV is an honest gated scaffold (no keyless source). Keyless, computed from DefiLlama daily and weekly price history.

## Output

A structured JSON response containing multiple Bitcoin valuation indicators (AHR999, Mayer Multiple, 200-week MA deviation, Pi-Cycle Top proximity), each with its current computed value, a zone classification (e.g. undervalued, fair value, overvalued), and a directional signal (e.g. buy, hold, caution). MVRV is noted as a gated/scaffold field. Data is computed from DefiLlama daily and weekly price history.

## 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": {
      "asset": {
       "enum": [
        "btc",
        "eth"
       ],
       "type": "string",
       "description": "Asset key (default btc). AHR999 is Bitcoin-only; Mayer/200WMA/Pi-Cycle are asset-agnostic."
      }
     }
    }
   },
   "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-timing-indicators-dashboard-ba1e46a1/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)
