# MyceliaSignal EUR/CNY Oracle

> MyceliaSignal EUR/CNY Oracle is a paid API for AI agents from api.myceliasignal.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns a cryptographically signed (Ed25519) attestation of the current EUR/CNY exchange rate

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/price/eur/cny
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-myceliasignal-com-823a58fa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kgV9mxLyqcusc3JZz2c8v

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 api-myceliasignal-com-823a58fa
```

Example prompt: What's the current EUR/CNY exchange rate? I need a cryptographically signed oracle attestation I can trust for a smart contract or on-chain verification.

## When to prefer this

Use this endpoint when you need a cryptographically verifiable, tamper-proof EUR/CNY exchange rate — especially for on-chain smart contracts, DeFi protocols, or any application requiring an Ed25519-attested price oracle rather than a plain unauthenticated API response.

## Known failure modes

- Payment required (402) if x402 USDC payment is not included
- Rate unavailable if upstream forex data source is down
- Invalid or expired signature if server-side key rotation occurs
- Network timeout if the oracle service is temporarily unreachable

## How this service works

EUR/CNY forex exchange rate — euro to Chinese yuan — Ed25519 signed attestation

## Output

Returns the current EUR to CNY exchange rate as a signed oracle attestation — includes the price value, timestamp, and an Ed25519 cryptographic signature that verifies the data has not been tampered with.

## 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/api-myceliasignal-com-823a58fa/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)
