# Mycelia Signal EUR/USD Price Oracle

> Mycelia Signal EUR/USD 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) EUR/USD exchange rate attestation

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/price/eur/usd
- 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-efe41de6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6riaboSFCTwwpD-8up2Zr

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

Example prompt: Can you get me the current EUR/USD exchange rate with a cryptographic attestation — I need a Mycelia Signal signed oracle price I can verify on-chain?

## When to prefer this

Use this endpoint when you need a cryptographically verifiable EUR/USD price — e.g. for smart contracts, trustless financial workflows, or any scenario where a tamper-evident signed attestation matters beyond a plain price lookup. Prefer it over unauthenticated REST price feeds when on-chain or audit-grade provenance is required.

## Known failure modes

- Payment not received or invalid x402 payment header — returns 402 Payment Required
- Rate temporarily unavailable from upstream source — returns 5xx error
- Invalid request format — returns 400 Bad Request
- Network timeout fetching live rate data

## How this service works

EUR/USD forex exchange rate — real-time euro to US dollar for FX trading and settlement — Ed25519 signed attestation

## Output

A signed price attestation containing the current EUR/USD exchange rate, accompanied by an Ed25519 cryptographic signature that allows consumers to verify the data's authenticity and integrity, typically including the rate value, timestamp, and signature payload.

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