# timing-dca

> timing-dca is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns a single accumulate/hold/reduce Bitcoin DCA signal with confidence score, fusing AHR999, Mayer Multiple, Fear & Greed index, and 200-week MA deviation.

## Facts

- Endpoint: GET https://api.agentstools.dev/timing/dca
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/timing-dca-1581e84b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JmpBfBtvh55E5wFinyLUR

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 timing-dca-1581e84b
```

Example prompt: What's the current Bitcoin DCA signal — should I be accumulating, holding, or reducing right now based on the AHR999, Mayer Multiple, Fear & Greed, and 200-week MA indicators?

## When to prefer this

Choose this endpoint when you need a single, opinionated DCA signal for Bitcoin that combines multiple well-known on-chain and market indicators without requiring an LLM or custom logic. It is ideal for automated DCA bots, portfolio management agents, or dashboards that need a fast, deterministic, keyless verdict rather than raw indicator data that requires interpretation.

## Known failure modes

- Unsupported asset key returns validation error (only btc and eth are valid)
- Upstream data source unavailability may cause stale or missing indicator values
- AHR999 is Bitcoin-only; ETH requests may return partial indicator coverage
- Network timeout if external data feeds are slow to respond

## How this service works

Normalized Bitcoin DCA verdict: a single accumulate / hold / reduce signal with confidence and rationale, fusing AHR999, the Mayer Multiple, the Fear & Greed index and the 200-week MA deviation. Shows the input components and per-indicator scores. Keyless, deterministic, no LLM.

## Output

A normalized verdict object containing: the top-level signal (accumulate, hold, or reduce), a confidence score, a human-readable rationale, and the individual input components (AHR999, Mayer Multiple, Fear & Greed index, 200-week MA deviation) along with their per-indicator scores used to compute the composite verdict.

## 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/timing-dca-1581e84b/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)
