# Mycelia Signal Route Sea State Summary Oracle

> Mycelia Signal Route Sea State Summary Oracle is a paid API for AI agents from api.myceliasignal.com, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-14).

Returns a cryptographically signed (Ed25519) summary of current sea state conditions along a marine route

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/marine/route/summary
- Price: $0.2/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-b9909833
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JKHPOk27Z-ngN-Vugow0b

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

Example prompt: Can you get me the current sea state summary for my marine route — I need the signed oracle attestation so I can verify the data hasn't been tampered with?

## When to prefer this

Use this endpoint when you need cryptographically verifiable (Ed25519 attested) sea state summaries for a marine route, particularly in contexts where data integrity and tamper-evidence are required — such as smart contract inputs, automated maritime decisions, or trustless agent workflows. Prefer over unauthenticated weather APIs when auditability or on-chain use is needed.

## Known failure modes

- Payment not provided — returns 402 Payment Required if 0.2 USDC x402 payment is missing
- Invalid or malformed request — returns 400 if query parameters are incorrect
- Service unavailable — upstream marine data source may be temporarily unreachable
- Signature verification failure — consumer-side Ed25519 key mismatch during verification

## How this service works

Voyage route sea state summary — wave conditions along shipping route for freight and logistics planning — Ed25519 signed attestation

## Output

A cryptographically signed Ed25519 attestation containing a summary of current sea state conditions along a marine route, including wave and ocean condition data that can be independently verified for authenticity.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "lat1": "40.7128",
   "lat2": "51.5074",
   "lon1": "-74.0060",
   "lon2": "-0.1278"
  }
 }
}
```

## 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",
     "required": [
      "lat1",
      "lon1",
      "lat2",
      "lon2"
     ],
     "properties": {
      "lat1": {
       "type": "number",
       "description": "Origin latitude"
      },
      "lat2": {
       "type": "number",
       "description": "Destination latitude"
      },
      "lon1": {
       "type": "number",
       "description": "Origin longitude"
      },
      "lon2": {
       "type": "number",
       "description": "Destination longitude"
      }
     }
    }
   },
   "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-b9909833/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)
