# MycealiaSignal BTC/USD OHLCV Spot Price History

> MycealiaSignal BTC/USD OHLCV Spot Price History 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-14).

Returns Ed25519-signed OHLCV historical spot price data for BTC/USD across multiple timeframes (1m, 5m, 1h, 4h, 1d) for up to 60 days

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/history/spot/btc/usd
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mycealiasignal-btc-usd-ohlcv-spot-price-history-360db9ef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5cGC6UGgMLFXqdbCF25hd

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 mycealiasignal-btc-usd-ohlcv-spot-price-history-360db9ef
```

Example prompt: Pull me the signed OHLCV history for BTC/USD at the 1-hour interval for the last 30 days — I need the Ed25519 batch attestation so I can verify the data on-chain.

## When to prefer this

Choose this endpoint when you need historically verifiable, cryptographically attested BTC/USD price data — especially for oracle-driven smart contracts, DeFi protocols, or any use case requiring tamper-proof OHLCV data. Prefer this over unsigned APIs when on-chain verification or trustless data pipelines are required. Best suited for intervals from 1-minute to daily, up to 60 days of history.

## Known failure modes

- Invalid or unsupported interval parameter returns an error
- Date range exceeding 60 days limit returns a rejection
- Missing required query parameters returns 400 Bad Request
- Payment not completed or x402 flow not fulfilled returns 402 Payment Required
- Signature verification failure on client side if public key mismatch

## How this service works

BTC spot price history — signed OHLCV, 1m/5m/1h/4h/1d intervals, up to 60 days. Batch Ed25519 signed. — Ed25519 signed attestation

## Output

Returns a batch of OHLCV candlestick records for BTC/USD across the requested interval and date range, each cryptographically signed with Ed25519 attestation to enable trustless on-chain or oracle verification. Each candle includes open, high, low, close, and volume fields.

## 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/mycealiasignal-btc-usd-ohlcv-spot-price-history-360db9ef/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)
