# Myceliasignal Optimism Gas Price Oracle

> Myceliasignal Optimism Gas 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 the current Optimism network gas price as an Ed25519-signed attestation

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/gas/optimism
- 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-2bf2876e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_92Wx3m3PNXieOoMIlwEZp

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-2bf2876e
```

Example prompt: What's the current gas price on Optimism right now? I need a cryptographically signed oracle attestation I can verify.

## When to prefer this

Choose this endpoint when you need a tamper-evident, cryptographically attested Optimism gas price — especially for smart contract interactions, on-chain verification, or audit trails where a bare unsigned price feed is insufficient. Prefer over general blockchain explorers when signature provenance is required.

## Known failure modes

- Network unavailable — upstream Optimism RPC node unreachable
- Payment not received — x402 payment of $0.01 USDC not completed or invalid
- Stale data — oracle feed temporarily delayed
- Invalid signature verification — Ed25519 signature mismatch if response is tampered

## How this service works

Optimism L2 gas price — current transaction fee for Optimism network — Ed25519 signed attestation

## Output

Returns the current gas price on the Optimism L2 network, bundled with an Ed25519 digital signature so the result can be independently verified as authentic and untampered.

## 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-2bf2876e/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)
