# MyCeliaSignal SOL/USD Liquidation Flow Oracle

> MyCeliaSignal SOL/USD Liquidation Flow Oracle is a paid API for AI agents from api.myceliasignal.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns real-time SOL/USD liquidation flow data aggregated across 4 exchanges, delivered as an Ed25519 signed attestation

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/liquidations/sol/usd
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/myceliasignal-sol-usd-liquidation-flow-oracle-41647901
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zmZBJEeYT76NneVRgRhMM

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-sol-usd-liquidation-flow-oracle-41647901
```

Example prompt: What's the current SOL/USD liquidation flow right now — can you pull the latest signed oracle data aggregated across all 4 exchanges so I can assess cascade risk?

## When to prefer this

Use this endpoint when you need cryptographically verifiable, real-time SOL/USD liquidation flow data aggregated across multiple exchanges. Prefer this over single-exchange solutions when you need multi-venue coverage for risk models, on-chain smart contract inputs requiring Ed25519 attestations, or DeFi protocols that need trustless oracle data about SOL liquidation pressure.

## Known failure modes

- Payment not received or x402 payment protocol failure — endpoint returns 402 Payment Required
- Exchange data feeds temporarily unavailable — degraded or missing liquidation data for some exchanges
- Ed25519 signing service error — attestation cannot be generated
- Rate limiting or quota exceeded — 429 response
- Network timeout if exchange APIs are slow to respond

## How this service works

SOL liquidation flow — real-time across 4 exchanges — Ed25519 signed attestation

## Output

Returns a real-time SOL/USD liquidation flow signal aggregated across 4 cryptocurrency exchanges, with an Ed25519 cryptographic signature for on-chain verifiability and attestation. Likely includes liquidation volume, direction, and exchange-level breakdown.

## 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-sol-usd-liquidation-flow-oracle-41647901/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)
