# MyCeliaSignal SOL Options Instrument Discovery

> MyCeliaSignal SOL Options Instrument Discovery is a paid API for AI agents from api.myceliasignal.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Discovers and lists available SOL (Solana) options instruments across exchanges with Ed25519 signed attestation

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/instruments/sol/options
- Price: $0.03/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-496d47f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9Rebzj2LlPavXkF0wVjzW

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-496d47f4
```

Example prompt: Show me all currently available SOL options instruments — I need the full list of strikes and expiries with a signed attestation so I can verify the data is authentic.

## When to prefer this

Use this endpoint when you need to discover what SOL options instruments exist before querying Greeks or pricing data. It is the discovery layer for SOL options — use it first to get valid instrument identifiers, then pass those to pricing/Greeks endpoints. Prefer this over ETH or BTC equivalents when specifically working with Solana derivatives.

## Known failure modes

- No SOL options instruments currently available — empty result set returned
- Payment of $0.03 USDC not processed — 402 Payment Required response
- Ed25519 signature verification failure — attestation invalid
- Exchange data feed unavailable — instruments list may be stale or incomplete
- Rate limit exceeded — too many requests in a short period

## How this service works

Solana options instruments — full contract listing across strikes and expiries for options trading — Ed25519 signed attestation

## Output

A signed list of available SOL options instruments including strikes, expiration dates, and exchange listings, cryptographically attested with an Ed25519 signature for data integrity verification.

## 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-496d47f4/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)
