# Mycelia Equity Regime Composite (MSERC) Oracle

> Mycelia Equity Regime Composite (MSERC) Oracle is a paid API for AI agents from api.myceliasignal.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-16).

Returns a signed composite equity market regime score (-100 to +100) combining health and stress sub-indices, classifying the market into one of seven regimes (RISK_ON to STRESS)

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/regime/equity/composite
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mycelia-equity-regime-composite-mserc-oracle-8c86aedc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vIZ05cmZGk871raBAr3HU

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 mycelia-equity-regime-composite-mserc-oracle-8c86aedc
```

Example prompt: What's the current equity market regime according to the Mycelia Signal composite — are we risk-on, defensive, or somewhere in between, and what's the net score?

## When to prefer this

Use this endpoint when you need a single authoritative, cryptographically attested equity market regime classification that combines both health and stress dimensions into one composite score. Prefer it over raw price feeds when you need a regime label (e.g. RISK_ON vs DEFENSIVE) rather than a raw price, and when on-chain verifiability via Ed25519 attestation is required for smart contract or oracle-driven decision making.

## Known failure modes

- Payment not provided or insufficient USDC — 402 Payment Required
- Network timeout fetching upstream market data
- Stale cache if underlying data providers are unavailable
- Invalid Ed25519 signature if attestation system is degraded
- Rate limiting if too many requests in a short window

## How this service works

MSERC — Mycelia Equity Regime Composite. 2D framework: Health (MSLI×0.6+MSBI×0.4) vs Stress (MESI×0.6+MNVI×0.4). Net score -100 to +100. Regimes: RISK_ON/VOLATILE_BULL/MILD_RISK_ON/NEUTRAL/MILD_STRESS/DEFENSIVE/STRESS. 300s cache. — Ed25519 signed attestation

## Output

A signed JSON payload containing the MSERC composite score (range -100 to +100), the regime label (one of RISK_ON, VOLATILE_BULL, MILD_RISK_ON, NEUTRAL, MILD_STRESS, DEFENSIVE, STRESS), the health component (MSLI×0.6 + MSBI×0.4), the stress component (MESI×0.6 + MNVI×0.4), and an Ed25519 cryptographic attestation. The response is cached for 300 seconds.

## 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/mycelia-equity-regime-composite-mserc-oracle-8c86aedc/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)
