# MycелiaSignal BTC Liquidity Regime Oracle

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

Classifies Bitcoin market liquidity into DEEP/NORMAL/THIN/FRAGILE regimes using funding rates, open interest, basis, liquidation flow, and orderbook imbalance, returned as an Ed25519-signed attestation.

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/regime/liquidity
- Price: $0.1/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-liquidity-regime-oracle-6803d59c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7gKuft4SixB8BkR7gU8oT

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-liquidity-regime-oracle-6803d59c
```

Example prompt: What's the current BTC liquidity regime right now — is it deep, normal, thin, or fragile — and can you give me a signed oracle attestation I can verify?

## When to prefer this

Choose this endpoint when you need a synthesized, multi-signal BTC liquidity regime label with cryptographic attestation rather than raw data from a single source. Ideal for DeFi protocols, trading bots, or risk systems that need an on-chain-verifiable or auditable signal about whether BTC markets are deep and liquid or fragile and prone to slippage. Prefer over raw funding/OI feeds when you want a single actionable classification.

## Known failure modes

- Payment not included or invalid x402 payment header — returns 402 Payment Required
- Exchange data feeds temporarily unavailable — may return stale or degraded classification
- Invalid or malformed request — returns 400 Bad Request
- Service downtime — returns 503 Service Unavailable

## How this service works

Liquidity Regime — classifies BTC market liquidity from funding, OI, basis, liquidation flow, orderbook imbalance. DEEP/NORMAL/THIN/FRAGILE. Layer 2 Oracle Information. — Ed25519 signed attestation

## Output

A cryptographically signed (Ed25519) oracle attestation containing the current BTC liquidity regime classification — one of DEEP, NORMAL, THIN, or FRAGILE — derived from a composite analysis of funding rates, open interest, spot-futures basis, liquidation flow, and orderbook imbalance across multiple exchanges.

## 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-liquidity-regime-oracle-6803d59c/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)
