# CreatorMagic AI Topic Explainer

> CreatorMagic AI Topic Explainer is a paid API for AI agents from clawtious.creatormagic.ai, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Explains any topic at a specified complexity level, from simple (ELI5) to advanced expert-level, using AI

## Facts

- Endpoint: POST https://clawtious.creatormagic.ai/api/ai/explain
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clawtious-creatormagic-ai-550179a0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_N3Aj-pVItQSZ6qQtrkbt3

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 clawtious-creatormagic-ai-550179a0 -d '<json body>'
```

Example prompt: Explain how quantum entanglement works — I'm a complete beginner, so give me an ELI5 breakdown I can actually understand.

## When to prefer this

Choose this endpoint when you need an AI-generated explanation of a topic tailored to a specific audience or knowledge level, especially when you need to dynamically adjust complexity (ELI5 vs expert). Prefer this over generic LLM prompting when you want a dedicated, low-cost ($0.001) inference call optimized for explanation tasks.

## Known failure modes

- Missing or empty topic input returns a 400 error
- Invalid or unrecognized complexity level may default to a generic explanation
- Payment of $0.001 USDC not provided or x402 handshake fails — returns 402 Payment Required
- Extremely niche or obscure topics may produce low-quality or hallucinated explanations
- Network timeout if the upstream LLM inference takes too long

## Output

Returns an AI-generated explanation of the requested topic calibrated to the specified complexity level, ranging from a simple child-friendly breakdown to a detailed expert-level analysis.

## Example request

```json
{
 "input": {
  "body": {
   "level": "beginner",
   "topic": "photosynthesis"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body",
    "method"
   ],
   "properties": {
    "body": {
     "required": [
      "topic"
     ],
     "properties": {
      "level": {
       "type": "string",
       "description": "Audience level (beginner, intermediate, expert)"
      },
      "topic": {
       "type": "string",
       "description": "Topic to explain"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "explanation": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clawtious-creatormagic-ai-550179a0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from clawtious.creatormagic.ai](https://www.zero.xyz/host/clawtious.creatormagic.ai/llms.txt)
