# MyceliaSignal SOL/EUR Spot Price Oracle

> MyceliaSignal SOL/EUR 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-16).

Returns the current SOL/EUR spot price as a cryptographically signed Ed25519 attestation

## Facts

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

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-632bcea5
```

Example prompt: What's the current SOL/EUR price? I need a cryptographically signed attestation I can verify on-chain.

## When to prefer this

Use this endpoint when you need a cryptographically verifiable SOL/EUR price with an Ed25519 attestation — ideal for smart contracts, DeFi protocols, or any application requiring tamper-proof price data rather than just a raw price feed. Prefer over generic price APIs when on-chain verification or non-repudiation of the price quote is required.

## Known failure modes

- Price feed temporarily unavailable — upstream data source outage
- Payment failure — x402 micropayment of $0.01 USDC not processed correctly
- Invalid or expired attestation if timestamp mismatch occurs
- Rate limiting if too many requests in a short window

## How this service works

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

## Output

Returns the current SOL/EUR spot price along with an Ed25519 cryptographic signature attesting to the data's authenticity, enabling trustless verification of the price feed.

## 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-632bcea5/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)
