# MyceliaSignal Market State Synopsis

> MyceliaSignal Market State Synopsis is a paid API for AI agents from api.myceliasignal.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Returns a 15-signal market snapshot covering 4 indices, funding rates, open interest, liquidation flow, price, VWAP, basis, and economic calendar — Ed25519 signed, 60s cache

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/synopsis/market
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/myceliasignal-market-state-synopsis-f0ed3516
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qpuw02zE5GRpD9Dk8B0ww

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-market-state-synopsis-f0ed3516
```

Example prompt: Give me a full market state snapshot right now — all indices, funding, open interest, liquidation flow, VWAP, basis, and any upcoming econ events — and make sure it's cryptographically signed so I can verify it.

## When to prefer this

Use this endpoint when you need a broad, verified market overview across multiple signals in a single call rather than fetching individual metrics separately. Ideal for agents building dashboards, making trading decisions requiring multi-signal context, or any use case requiring cryptographic attestation of market state (e.g., on-chain oracle inputs). Prefer over individual endpoints when bandwidth efficiency and data consistency across signals matter.

## Known failure modes

- Payment not included or invalid x402 payment header → 402 Payment Required
- Upstream data feed outage → partial or error response for affected signals
- Cache miss during high-load periods → slightly increased latency
- Invalid or expired Ed25519 signature verification on client side if clock skewed
- Rate limiting if same client calls more frequently than cache window

## How this service works

Market state synopsis — 15-signal snapshot: all 4 indices, funding, OI, liq flow, price, VWAP, basis, econ calendar. 60s cache. Ed25519 signed. — Ed25519 signed attestation

## Output

A 15-signal market snapshot JSON payload including prices for 4 major indices, funding rates, open interest, liquidation flow with imbalance data, VWAP, spot-futures basis, and an economic calendar summary. The entire response is Ed25519 signed for verifiable attestation. Data is cached for up to 60 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-market-state-synopsis-f0ed3516/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)
