# Mycelia Signal SOL/JPY Spot Price Oracle

> Mycelia Signal SOL/JPY Spot 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-15).

Returns the current SOL/JPY spot price as an Ed25519-signed attestation, aggregated from Japanese crypto exchanges.

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/price/sol/jpy
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-myceliasignal-com-9cf6a5fc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cm4OYbtpPjccyZk3dgU2X

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-9cf6a5fc
```

Example prompt: What's the current SOL price in Japanese yen — I need a cryptographically signed attestation I can verify, sourced from Japanese exchanges like bitbank and GMO?

## When to prefer this

Use this endpoint when you need a cryptographically verifiable SOL/JPY price sourced specifically from Japanese exchanges (bitbank, GMO), particularly for DeFi contracts, audit trails, or any use case where tamper-proof price provenance matters. Prefer over generic price APIs when the Ed25519 attestation is required for downstream verification or when JPY denomination is specifically needed.

## Known failure modes

- Payment not received — endpoint requires $0.01 USDC via x402 protocol; missing or failed payment results in 402 response
- Exchange data unavailable — if bitbank/GMO are unreachable, price may be stale or endpoint may error
- Invalid signature verification — consumer must hold correct public key to verify Ed25519 signature
- Rate limiting — excessive calls may be throttled

## How this service works

Real-time Solana price in JPY, aggregated from multiple exchanges — Ed25519 signed attestation

## Output

Returns a JSON object containing: the trading domain (SOLJPY), an Ed25519 public key, a canonical price string in the format 'v1|PRICE|SOLJPY|<price>|JPY|0|<sources>|median|<timestamp>|<nonce>', and an Ed25519 signature over that canonical string. The price is the median of bitbank and GMO exchange quotes. The attestation can be independently verified using the returned public key.

## 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-9cf6a5fc/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)
