# MyeliaSignal GBP/CAD Price Oracle

> MyeliaSignal GBP/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 a cryptographically signed (Ed25519) attestation of the current GBP/CAD exchange rate

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/price/gbp/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-642ce4df
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kyO0jylviOUNf2gQSJ2LT

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-642ce4df
```

Example prompt: What's the current GBP to CAD exchange rate? I need a cryptographically signed attestation I can trust — one that's verifiable with an Ed25519 signature.

## When to prefer this

Use this endpoint when you need a cryptographically verifiable, tamper-proof GBP/CAD exchange rate — particularly for on-chain use cases, smart contract inputs, or any scenario where price integrity must be provable. Prefer this over plain REST forex APIs when auditability or trustless verification is required.

## Known failure modes

- Payment not provided or invalid — 402 Payment Required with x402 protocol details
- Rate limiting or quota exceeded — 429 Too Many Requests
- Upstream price feed unavailable — 503 Service Unavailable
- Malformed request — 400 Bad Request

## How this service works

GBP/CAD forex exchange rate — British pound to Canadian dollar — Ed25519 signed attestation

## Output

A signed oracle response containing the current GBP/CAD exchange rate along with an Ed25519 cryptographic attestation, allowing downstream consumers (smart contracts, agents, auditors) to verify the price 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-642ce4df/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)
