# MyCeliaSignal ETH Perp Trading Regime Oracle

> MyCeliaSignal ETH Perp Trading Regime Oracle 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-15).

Returns a 10-signal market regime classification for ETH perpetual futures, including directional bias, confidence score, and risk level, with Ed25519-signed attestation.

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/perp/eth
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/myceliasignal-eth-perp-trading-regime-oracle-92e0a9e2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q1LgPAJwvpCr6y6J44Zjn

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 myceliasignal-eth-perp-trading-regime-oracle-92e0a9e2
```

Example prompt: What's the current ETH perp market regime right now — am I looking at a squeeze setup, long trap, or volatility spike, and how confident is the signal?

## When to prefer this

Use this endpoint when you need a cryptographically attested, multi-signal regime classification specifically for ETH perpetual futures trading decisions — especially when you need verifiable provenance (Ed25519 signature) alongside directional bias and risk context. Prefer over raw price feeds when you want interpreted market state rather than raw price data.

## Known failure modes

- Payment not included or insufficient USDC (HTTP 402 Payment Required)
- Stale or unavailable underlying market data causing delayed signals
- Network timeout if upstream exchange data sources are unreachable
- Invalid or missing x402 payment header causing rejection

## How this service works

ETH perp trading regime — 10-signal classification with bias, confidence, risk. SQUEEZE_SETUP, LONG_TRAP, VOLATILITY_SPIKE and more. 30s cache. Ed25519 signed. — Ed25519 signed attestation

## Output

A structured response containing a 10-signal market regime classification for ETH perpetual futures, including the active regime label (e.g. SQUEEZE_SETUP, LONG_TRAP, VOLATILITY_SPIKE), directional bias (bullish/bearish/neutral), a confidence score, a risk assessment, and an Ed25519 cryptographic signature attesting to the data integrity. Response is cached for 30 seconds.

## 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/myceliasignal-eth-perp-trading-regime-oracle-92e0a9e2/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)
