# MyCeliaSignal BTC CME COT Positioning Oracle

> MyCeliaSignal BTC CME COT Positioning Oracle is a paid API for AI agents from api.myceliasignal.com, paid per call via x402, $1/call, status unknown (last checked 2026-09-13).

Returns the latest BTC CME Commitments of Traders (COT) positioning data as an Ed25519-signed attestation

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/cot/btc
- Price: $1/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-a57a08c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5kNdnwZitdBs0TQeGRx3e

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-a57a08c2
```

Example prompt: Can you pull the latest BTC CME Commitments of Traders positioning data with a cryptographic Ed25519 signature so I can verify it's authentic?

## When to prefer this

Use this endpoint when you need trustworthy, verifiable Bitcoin CME Commitments of Traders positioning data backed by a cryptographic Ed25519 signature. Ideal for trading agents, DeFi protocols, or on-chain oracle consumers that need tamper-evident financial data they can verify without trusting a central party.

## Known failure modes

- Payment not provided or invalid — returns 402 Payment Required
- Upstream CME data unavailable — may return 503 or stale data
- Malformed request — returns 400 Bad Request
- Rate limiting or quota exceeded — returns 429

## How this service works

Bitcoin CME commitment of traders — institutional futures positioning from CFTC for sentiment and contrarian signals — Ed25519 signed attestation

## Output

Returns current BTC CME COT (Commitments of Traders) positioning data — including institutional long/short positioning metrics — cryptographically signed with an Ed25519 key for tamper-proof attestation, enabling on-chain or agent-based verification of the data's authenticity.

## 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-a57a08c2/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)
