# MyCeliaSignal Macro Risk Score (MSSI + MSTI + Econ Calendar)

> MyCeliaSignal Macro Risk Score (MSSI + MSTI + Econ Calendar) is a paid API for AI agents from api.myceliasignal.com, paid per call via x402, $1/call, status unknown (last checked 2026-09-13).

Returns a cross-domain macro risk score (0-100) with a categorical risk regime (LOW/MODERATE/ELEVATED/HIGH/CRITICAL) combining sentiment, technical, and economic calendar signals, delivered as an Ed25519-signed oracle attestation.

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/intel/macro/risk
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/myceliasignal-macro-risk-score-mssi-msti-econ-calendar-59ef0e85
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_b5BspGavHHywOEsbTRiEv

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-macro-risk-score-mssi-msti-econ-calendar-59ef0e85
```

Example prompt: What's the current macro risk score and regime right now — I want the MyCeliaSignal cross-domain oracle reading that combines sentiment, technical, and econ calendar signals into a single 0-100 score with a risk label like LOW or CRITICAL?

## When to prefer this

Choose this endpoint when you need a single authoritative, cryptographically attested macro risk score that synthesizes sentiment signals (MSSI), technical signals (MSTI), and economic calendar events into one 0-100 score with a categorical regime label. Prefer this over individual asset price feeds when you need a holistic cross-domain macro view rather than a single-asset signal. Best for risk management dashboards, automated trading guards, or agent-based portfolio logic that needs to gate decisions on macro regime.

## Known failure modes

- Payment not included or invalid x402 header — returns 402 Payment Required
- Stale or unavailable upstream data sources causing degraded signal quality
- Rate limit exceeded if too many calls within cache window
- Ed25519 signature verification failure indicating tampered response
- Network timeout if oracle aggregation takes too long

## How this service works

Cross-domain macro risk score — MSSI + MSTI + econ calendar. risk_score 0-100, risk_regime: LOW/MODERATE/ELEVATED/HIGH/CRITICAL. 60s cache. Ed25519 signed. Layer 3 Oracle Intelligence. — Ed25519 signed attestation

## Output

Returns a JSON payload containing a numeric risk_score from 0 to 100 and a risk_regime string (one of LOW, MODERATE, ELEVATED, HIGH, or CRITICAL), synthesized from MSSI (macro sentiment), MSTI (macro technical), and economic calendar data. The response is Ed25519-signed for cryptographic attestation of data integrity. Data is cached for 60 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/myceliasignal-macro-risk-score-mssi-msti-econ-calendar-59ef0e85/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)
