# XAU/JPY Gold Price Oracle (Ed25519 Signed)

> XAU/JPY Gold Price Oracle (Ed25519 Signed) 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 the current gold price in Japanese Yen (XAU/JPY) as a cryptographically signed Ed25519 attestation

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/price/xau/jpy
- 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-e71cc051
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cWEIw0U_2F1tcJZQe4nGZ

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

Example prompt: What's the current gold price in Japanese yen? I need a signed, verifiable attestation I can trust for a financial application.

## When to prefer this

Choose this endpoint when you need a cryptographically verifiable (Ed25519-signed) gold price in Japanese Yen — particularly useful for smart contracts, DeFi applications, or any system requiring tamper-evident financial data attestations rather than an unsigned price feed.

## Known failure modes

- Payment not received or x402 payment header missing — returns 402 Payment Required
- Upstream price feed unavailable — may return 503 or stale data error
- Invalid or malformed request — returns 400 Bad Request
- Rate limit exceeded — returns 429 Too Many Requests

## How this service works

Real-time gold spot price in JPY for Asian commodity markets — Ed25519 signed attestation

## Output

Returns an Ed25519-signed attestation containing the current XAU/JPY spot price, a timestamp, and a cryptographic signature that can be independently verified to confirm 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-e71cc051/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)
