# Magic Conch Shell Oracle

> Magic Conch Shell Oracle is a paid API for AI agents from conch402.dylan-caponi.workers.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Answers a question with one of the seven canonical responses from the Magic Conch shell in SpongeBob's 'Club SpongeBob' episode, applying episode-accurate logic

## Facts

- Endpoint: GET https://conch402.dylan-caponi.workers.dev/ask
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/magic-conch-shell-oracle-ef17a401
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uGwbtZZy6_nOo1NQ-Gsb6

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 magic-conch-shell-oracle-ef17a401
```

Example prompt: Ask the Magic Conch shell: 'Should I eat pizza or tacos for dinner tonight?'

## When to prefer this

Choose this endpoint when you need a humorous, SpongeBob-themed novelty oracle that strictly mimics the Magic Conch shell's seven-line vocabulary from the Club SpongeBob episode. Not a substitute for real decision-making APIs.

## Known failure modes

- Missing question param returns unclear response
- Repeated questions may trigger 'Try asking again.' then 'No!' per episode logic
- Network errors from Cloudflare Workers edge runtime
- Payment failure (x402) if USDC not provided or insufficient

## How this service works

Ask the Magic Conch. It answers only in its seven lines from 'Club SpongeBob': 'Maybe, someday.' / 'Nothing.' / 'Neither.' / 'I don't think so.' / 'No.' / 'Yes.' / 'Try asking again.' Episode logic applies: what-should-we-do questions get 'Nothing.', either/or gets 'Neither.', repeat questions get 'Try asking again.' and then the sarcastic 'No!'. The shell knows all.

## Output

Returns a JSON object containing the conch's canonical answer (one of: 'Maybe, someday.', 'Nothing.', 'Neither.', 'I don't think so.', 'No.', 'Yes.', or 'Try asking again.'), the tone of the response, a wisdom field, the echoed question, an 'all_hail' phrase, and a boolean 'the_shell_has_spoken' flag.

## 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": {
      "question": {
       "type": "string",
       "description": "Your question for the Magic Conch"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "tone": {
       "type": "string"
      },
      "answer": {
       "type": "string"
      },
      "wisdom": {
       "type": "string"
      },
      "all_hail": {
       "type": "string"
      },
      "question": {
       "type": "string"
      },
      "the_shell_has_spoken": {
       "type": "boolean"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tone": "plain",
  "answer": "Maybe, someday.",
  "wisdom": "We must never question the wisdom of the Magic Conch! The club always takes its advice before we do anything!",
  "all_hail": "All hail the Magic Conch!",
  "question": "Will I ever get married?",
  "the_shell_has_spoken": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/magic-conch-shell-oracle-ef17a401/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from conch402.dylan-caponi.workers.dev](https://www.zero.xyz/host/conch402.dylan-caponi.workers.dev/llms.txt)
