# MyceliaSignal USD/CAD Price Oracle

> MyceliaSignal USD/CAD Price 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 the current USD/CAD exchange rate as an Ed25519-signed price attestation

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/price/usd/cad
- 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-23b65278
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JtGZzwZvPUBmmPxEGgh8E

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-23b65278
```

Example prompt: What's the current USD to Canadian dollar exchange rate? I need a cryptographically signed price attestation I can trust.

## When to prefer this

Use this endpoint when you need a cryptographically signed, verifiable USD/CAD price attestation rather than a raw unauthenticated feed — ideal for smart contracts, on-chain use cases, or any workflow requiring tamper-evident proof of the exchange rate.

## Known failure modes

- Payment not provided or invalid x402 payment — returns 402 Payment Required
- Rate limiting or quota exceeded — returns 429
- Upstream price feed unavailable — returns 503 or stale data error
- Malformed request — returns 400

## How this service works

USD/CAD forex exchange rate — US dollar to Canadian dollar loonie rate — Ed25519 signed attestation

## Output

Returns the current USD/CAD exchange rate along with an Ed25519 digital signature attesting to the price, enabling downstream verification of data authenticity and provenance.

## 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-23b65278/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)
