# MyceliaSignal CNY/JPY Oracle

> MyceliaSignal CNY/JPY 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-14).

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

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/price/cny/jpy
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-myceliasignal-com-866163a8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HWVK_-NfA0r2_uWDL5I_5

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-866163a8
```

Example prompt: Give me the current CNY/JPY exchange rate with a cryptographic Ed25519 signed attestation so I can verify it's authentic.

## When to prefer this

Use this endpoint when you need a cryptographically verifiable (Ed25519 signed) CNY/JPY exchange rate, particularly for smart contracts, on-chain applications, or any system that requires tamper-proof price attestations rather than a plain REST forex feed. Prefer this over unverified forex APIs when auditability or cryptographic integrity of the price matters.

## Known failure modes

- Payment not provided or invalid x402 payment header — returns 402 Payment Required
- Upstream price feed unavailable — returns 503 or error response
- Invalid or expired payment — returns 402 with error detail
- Rate limiting exceeded — returns 429 Too Many Requests

## How this service works

CNY/JPY forex exchange rate — Chinese yuan to Japanese yen — Ed25519 signed attestation

## Output

A JSON response containing the current CNY/JPY spot exchange rate along with an Ed25519 cryptographic signature attesting to the authenticity of the price data, including a timestamp and the signing public key for verification.

## 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-866163a8/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)
