# MyceliaSignal CNY/CAD Oracle

> MyceliaSignal CNY/CAD 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-15).

Returns a cryptographically signed Ed25519 attestation of the current CNY/CAD (Chinese Yuan to Canadian Dollar) exchange rate

## Facts

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

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-a77b577e
```

Example prompt: What's the current CNY to CAD exchange rate? I need a cryptographically signed attestation I can verify.

## When to prefer this

Use this endpoint when you need a cryptographically verifiable, tamper-proof CNY/CAD exchange rate — especially for smart contracts, DeFi protocols, or any application requiring trustless verification of forex data. Prefer over unauthenticated rate feeds when provenance and integrity guarantees matter.

## Known failure modes

- Price feed unavailable — upstream data source outage returns 503
- Payment required — missing or invalid x402 payment header returns 402
- Rate limit exceeded — too many requests returns 429
- Invalid payment — insufficient USDC payment amount returns 402
- Signature verification fails if public key is not known to consumer

## How this service works

CNY/CAD forex exchange rate — Chinese yuan to Canadian dollar — Ed25519 signed attestation

## Output

Returns a JSON payload containing the current CNY/CAD exchange rate along with an Ed25519 digital signature attesting to the authenticity and integrity of the price data, enabling trustless verification by any party with the public key.

## 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-a77b577e/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)
