# MycелiaSignal BTC Perp Trading Regime Oracle

> MycелiaSignal BTC Perp Trading Regime Oracle is a paid API for AI agents from api.myceliasignal.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-13).

Returns a 10-signal trading regime classification for BTC perpetual futures, including market bias, confidence score, and risk level, with signals like SQUEEZE_SETUP, LONG_TRAP, and VOLATILITY_SPIKE.

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/perp/btc
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/myc-iasignal-btc-perp-trading-regime-oracle-8b5ae066
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hCSbJEKCSdzyxDmc3_QVi

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 myc-iasignal-btc-perp-trading-regime-oracle-8b5ae066
```

Example prompt: What trading regime is BTC perp in right now — is it a squeeze setup, long trap, or volatility spike, and what's the confidence and risk level? I want a signed attestation so I can trust the result.

## When to prefer this

Use this endpoint when an AI agent or trading system needs a structured, cryptographically attested regime classification for BTC perpetual futures — especially when you need tamper-evident signal data with confidence and risk metadata. Prefer this over raw price feeds when you need a higher-level regime label rather than raw market data, and when Ed25519 attestation is required for trust verification.

## Known failure modes

- Payment not provided or insufficient (x402 Payment Required)
- Network timeout or service unavailable (503)
- Stale data if cache is at 30-second boundary
- Ed25519 signature verification failure on client side if public key mismatch
- Rate limiting if too many requests in short window

## How this service works

BTC perp trading regime — 10-signal classification with bias, confidence, risk. SQUEEZE_SETUP, LONG_TRAP, VOLATILITY_SPIKE and more. 30s cache. Ed25519 signed. — Ed25519 signed attestation

## Output

A cryptographically signed (Ed25519) JSON payload containing the current BTC perpetual futures market regime classification from one of 10 possible signal types (including SQUEEZE_SETUP, LONG_TRAP, VOLATILITY_SPIKE and others), along with directional bias (bullish/bearish/neutral), a confidence score, and a risk level. Data is cached for 30 seconds.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "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/myc-iasignal-btc-perp-trading-regime-oracle-8b5ae066/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.myceliasignal.com](https://www.zero.xyz/host/api.myceliasignal.com/llms.txt)
