# Mycelia Signal BTC/USD Swing-Pivot Support/Resistance Levels

> Mycelia Signal BTC/USD Swing-Pivot Support/Resistance Levels 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-14).

Returns Ed25519-signed BTC/USD swing-pivot price levels (support, resistance, at-level) with strength and proximity scores derived from 69-day spot price history.

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/market/support/pivot/btc
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mycelia-signal-btc-usd-swing-pivot-support-resistance-levels-4cb7951e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7t1O63zY_RrfDipK7zy_-

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 mycelia-signal-btc-usd-swing-pivot-support-resistance-levels-4cb7951e
```

Example prompt: Pull the current BTC/USD swing-pivot levels — I want to see which price zones have acted as support or resistance over the past 69 days, along with their strength and how close the current price is to each level, and make sure the data is cryptographically signed.

## When to prefer this

Choose this endpoint when you need a deterministic, cryptographically attested snapshot of BTC/USD price structure — specifically historical swing-pivot levels — rather than a forward-looking price prediction or a real-time order book view. Ideal for agents that require verifiable, auditable market structure data for risk management, options pricing, or trade entry decisions. Prefer over unattested price feeds when tamper-evidence is required.

## Known failure modes

- Payment not provided or insufficient (x402 payment required, $0.15 USDC per call)
- Upstream price data unavailable or stale, resulting in an error or degraded response
- Invalid or malformed request parameters causing a 400 error
- Signature verification failure if the consumer's Ed25519 public key validation logic has a bug

## How this service works

BTC/USD swing-pivot levels (where price reversed). Deterministic price-structure attestation over 69d spot history — support, resistance, at-level with strength and proximity. Ed25519 signed. No forward-looking claim. — Ed25519 signed attestation

## Output

A deterministically computed, Ed25519-signed JSON payload containing BTC/USD swing-pivot price levels categorized as support, resistance, or at-level, each annotated with a strength score (indicating historical significance of the reversal) and a proximity score (indicating how close current price is to the level), derived from 69 days of spot price history. No forward-looking predictions are included.

## 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/mycelia-signal-btc-usd-swing-pivot-support-resistance-levels-4cb7951e/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)
