# MyceliaSignal EUR/GBP Price Oracle

> MyceliaSignal EUR/GBP 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-14).

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

## Facts

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

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

Example prompt: What's the current EUR/GBP exchange rate? I need a cryptographically signed attestation I can verify.

## When to prefer this

Use this endpoint when you need a cryptographically verifiable, signed EUR/GBP exchange rate — for example, in smart contracts, on-chain settlement, audit trails, or any application where tamper-proof provenance of forex data is required. Prefer this over unsigned REST forex APIs when trustless verification matters.

## Known failure modes

- Price feed unavailable: upstream forex data source is down or delayed
- Invalid signature: attestation cannot be verified if key rotation occurred
- Payment failure: x402 micropayment of $0.01 USDC not accepted or insufficient balance
- Rate limiting: too many requests in a short period
- Network error: endpoint unreachable

## How this service works

EUR/GBP forex exchange rate — euro to British pound sterling — Ed25519 signed attestation

## Output

An Ed25519-signed attestation object containing the current EUR/GBP spot exchange rate, a timestamp, and a cryptographic signature that allows downstream consumers to verify 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-b2d8181f/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)
