# Myceliasignal ETH Liquidation Flow Oracle

> Myceliasignal ETH Liquidation Flow Oracle 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 ETH liquidation flow data across 1h/4h/24h windows with long/short breakdown, dominant side, and largest liquidation event, delivered as a signed attestation.

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/liq-flow/eth
- 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/myceliasignal-eth-liquidation-flow-oracle-797a13f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SWBc7CH6QYzxP_nhKwsjc

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-liquidation-flow-oracle-797a13f3
```

Example prompt: Pull the latest ETH liquidation flow data — I want to see the 1h, 4h, and 24h windows with the long/short breakdown, which side is dominant, and what the biggest liquidation event was, with a signed attestation I can verify on-chain.

## When to prefer this

Use this endpoint when you need cryptographically attested ETH liquidation flow data for oracle-driven smart contracts, DeFi risk engines, or on-chain protocols that require verifiable off-chain inputs. Prefer this over generic exchange APIs when you need multi-window (1h/4h/24h) breakdowns of long vs short liquidation pressure with Ed25519 attestation rather than raw unsigned data.

## Known failure modes

- Payment not received or invalid x402 payment header — 402 Payment Required
- Upstream data source unavailable — 503 Service Unavailable
- Rate limit exceeded — 429 Too Many Requests
- Malformed request parameters — 400 Bad Request
- Signature verification failure on the client side if key mismatch

## How this service works

ETH liquidation flow — 1h/4h/24h windows, long/short breakdown, dominant side, largest event. — Ed25519 signed attestation

## Output

Returns ETH liquidation flow metrics across 1-hour, 4-hour, and 24-hour windows, including a breakdown of long versus short liquidations, identification of the dominant liquidating side, and the largest single liquidation event. All data is delivered as an Ed25519 cryptographically signed attestation for on-chain or trust-minimized use.

## 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-liquidation-flow-oracle-797a13f3/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)
