# MycелiaSignal SOL Liquidation Flow Oracle

> MycелiaSignal SOL 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-15).

Returns SOL liquidation flow data across 1h/4h/24h windows with long/short breakdown, dominant side, and largest liquidation event, delivered as an Ed25519-signed attestation.

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/liq-flow/sol
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/myc-iasignal-sol-liquidation-flow-oracle-5bf53d07
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_odDlHePevaJUeBtfH-OFB

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 myc-iasignal-sol-liquidation-flow-oracle-5bf53d07
```

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

## When to prefer this

Use this endpoint when you need cryptographically attested SOL liquidation flow data for DeFi smart contracts, algorithmic trading strategies, or risk management systems that require verifiable oracle-grade data. Prefer this over unauthenticated data sources when tamper-proof provenance of liquidation metrics is required. Ideal for agents making automated decisions based on market stress signals.

## Known failure modes

- Payment not included or invalid — HTTP 402 returned requiring x402 USDC payment
- Upstream data unavailable — oracle may return stale or error response
- Signature verification failure if Ed25519 public key mismatch
- Rate limiting if called too frequently without valid payment
- Network timeout if on-chain data aggregation is slow

## How this service works

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

## Output

A cryptographically signed (Ed25519) payload containing SOL liquidation flow metrics segmented into 1h, 4h, and 24h windows, including long vs short liquidation volumes, the dominant side (net long or short), and details of the largest single liquidation event in the timeframe.

## 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/myc-iasignal-sol-liquidation-flow-oracle-5bf53d07/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)
