# crypto-technicals-x402

> crypto-technicals-x402 is a paid API for AI agents from vmi3089643.contaboserver.net, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns daily trend regime, Donchian channel levels, ATR-based stop distances, and entry/exit signals for a given Binance spot trading pair

## Facts

- Endpoint: GET https://vmi3089643.contaboserver.net/v1/regime/%7Bsymbol%7D
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-technicals-x402-97bbfe98
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7R7ImoPzVfGvBx4sNLvaK

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 crypto-technicals-x402-97bbfe98
```

Example prompt: What's the current trend regime and Donchian channel levels for BTCUSDT — is it above the EMA and SMA200, and is there an active entry or exit signal today?

## When to prefer this

Choose this endpoint when you need pre-computed daily trend-following signals (Donchian breakout, ATR stops, EMA/SMA200 regime) for Binance spot pairs, especially when building or augmenting an automated trend-following strategy. It is distinct from raw price feeds because it delivers fully computed technical indicators and actionable entry/exit signals in a single call, priced per-call via x402 micropayments in USDC on Base.

## Known failure modes

- Invalid or unsupported symbol returns an error or empty response
- Payment not provided or invalid x402 USDC payment results in 402 Payment Required
- Binance klines data temporarily unavailable causes stale or failed computation
- Malformed symbol (e.g. missing USDT suffix) may return unexpected results
- Server downtime on the Contabo VPS host could cause 502/503 errors

## How this service works

Pay-per-call crypto technical analysis for AI agents (x402, USDC on Base). Daily trend regime, Donchian levels, ATR stops, signals and backtests computed with the code of a live trend-following bot from Binance spot klines.

## Output

A JSON object containing: the trading symbol, last close price, as-of timestamp, trend regime fields (EMA value, EMA length, SMA200 value, boolean flags for above/below each), Donchian levels (breakout high, exit low, ATR, stop distance %, stop price if entered now, distance to breakout %), and the last closed day's signal (tag, enter/exit booleans, stop level).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asOf": "2026-09-12T00:00:00.000Z",
  "levels": {
   "atr": 1800,
   "exitLow": 72000,
   "breakoutHigh": 80000,
   "stopDistancePct": 7,
   "stopIfEnteredNow": 71600,
   "distanceToBreakoutPct": 3.9
  },
  "regime": {
   "ema": 74000,
   "emaLen": 100,
   "sma200": 70000,
   "aboveEma": true,
   "aboveSma200": true
  },
  "symbol": "BTCUSDT",
  "lastClose": 77000,
  "signalLastClosedDay": {
   "tag": "dc30",
   "exit": false,
   "stop": 71600,
   "enter": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-technicals-x402-97bbfe98/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vmi3089643.contaboserver.net](https://www.zero.xyz/host/vmi3089643.contaboserver.net/llms.txt)
