# Mycelia Signal MSVI BTC/USD Volatility Index

> Mycelia Signal MSVI BTC/USD Volatility Index is a paid API for AI agents from api.myceliasignal.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns the MSVI (Mycelia Signal Volatility Index) for BTC/USD as a cryptographically signed Ed25519 attestation

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/volatility/btc/usd
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-myceliasignal-com-f615e0a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U8qSbrJo20kJJpX0Dk70R

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 api-myceliasignal-com-f615e0a5
```

Example prompt: Can you get me the current MSVI Bitcoin volatility index reading for BTC/USD — I need the signed attestation so I can verify it on-chain.

## When to prefer this

Choose this endpoint when you need a cryptographically verifiable BTC/USD volatility index value — specifically the MSVI — suitable for use in smart contracts, audits, or any context requiring tamper-proof attestation. Prefer over raw exchange data when provenance verification matters.

## Known failure modes

- Payment not received or underpaid — returns 402 Payment Required
- Service unavailable or upstream data feed issue — returns 503
- Rate limiting or abuse detection — returns 429
- Invalid endpoint path — returns 404

## How this service works

MSVI Bitcoin volatility index — composite of realized vol, implied vol, term structure, funding stress and put/call ratio — Ed25519 signed attestation

## Output

A signed data payload containing the current MSVI BTC/USD volatility index value, accompanied by an Ed25519 cryptographic signature and attestation metadata (timestamp, pair), allowing downstream verification of data integrity and provenance.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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/api-myceliasignal-com-f615e0a5/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)
