# MyeliaSignal Economic Calendar Oracle

> MyeliaSignal Economic Calendar 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 the next 30 days of high and medium impact macroeconomic events for US, EU, GB, JP, and CN with actual vs estimate figures, delivered as an Ed25519-signed attestation.

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/econ/calendar
- 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/myeliasignal-economic-calendar-oracle-c23b0a35
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Szl-42uhgSjYPq0s9CDkh

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 myeliasignal-economic-calendar-oracle-c23b0a35
```

Example prompt: Pull the signed economic calendar for the next 30 days — I need all high and medium impact events for the US, EU, UK, Japan, and China, including whatever actual figures have already been released versus the consensus estimate.

## When to prefer this

Prefer this endpoint when you need a cryptographically attested (Ed25519-signed) economic calendar suitable for on-chain oracle consumption or trustless automation. Ideal for DeFi protocols, algorithmic trading bots, or AI agents that need verifiable macro event data across multiple major economies (US, EU, GB, JP, CN) without relying on unauthenticated third-party feeds. Choose this over generic financial data APIs when tamper-evidence and multi-region coverage in a single call matter.

## Known failure modes

- Payment not provided or invalid — 402 Payment Required response
- Upstream data provider unavailable — 503 or empty event list
- Signature verification fails on client side if public key mismatch
- No events returned if all scheduled events fall outside the 30-day window (unlikely)
- Rate limiting if the same agent calls repeatedly without payment

## How this service works

Economic calendar — next 30 days, high/medium impact events for US, EU, GB, JP, CN. Actual vs estimate where released. — Ed25519 signed attestation

## Output

A signed list of upcoming and recent macroeconomic events covering the next 30 days across US, EU, GB, JP, and CN, each entry including event name, scheduled datetime, impact level (high/medium), consensus estimate, and actual value where already released. The entire payload is accompanied by an Ed25519 cryptographic attestation for trustless verification.

## 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/myeliasignal-economic-calendar-oracle-c23b0a35/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)
