# Bitcoin Timing Indicators Dashboard

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

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 trading signal.

## Facts

- Endpoint: GET https://payai.agentstools.dev/timing/indicators
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bitcoin-timing-indicators-dashboard-99b7c751
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wehDvcT061qTfz-ACk1Ch

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-99b7c751
```

Example prompt: Pull up the full Bitcoin timing indicator dashboard — AHR999, Mayer Multiple, 200-week MA deviation, and Pi-Cycle Top — and tell me what zone and signal each one is showing right now.

## When to prefer this

Use this endpoint when you need a consolidated, keyless Bitcoin market cycle assessment combining multiple classic on-chain/price-based timing models in a single call. Prefer this over raw price APIs when you need interpreted zone signals (accumulation, neutral, overvalued) rather than raw prices. Ideal for periodic cycle monitoring, portfolio timing decisions, or building dashboards without needing individual API keys for each indicator source.

## Known failure modes

- Invalid asset parameter returns an error (only 'btc' and 'eth' accepted)
- AHR999 only computed for BTC; passing 'eth' may return partial results or null for that indicator
- Payment failure (x402 protocol) if USDC balance is insufficient
- DefiLlama upstream data unavailable may cause stale or missing price history
- Network timeout if DefiLlama price feed is slow

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

Returns a JSON object with multiple Bitcoin valuation indicators: AHR999 index value with zone (e.g. accumulation/neutral/overvalued) and signal, Mayer Multiple with zone and signal, 200-week moving average deviation percentage with zone and signal, Pi-Cycle Top proximity metric with zone and signal. Derived from DefiLlama daily and weekly price history. MVRV is noted as gated (not available keyless).

## 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-99b7c751/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)
