# CreatorMagic Web Extractor

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

Fetches a URL and returns its content as clean text or markdown, stripping away HTML noise for AI agent consumption

## Facts

- Endpoint: POST https://clawtious.creatormagic.ai/api/web/extract
- Price: $0.003/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-eea2f1ab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xNsfzCqMGd9UDtZZPXEh3

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-eea2f1ab -d '<json body>'
```

Example prompt: Can you pull the readable content from https://techcrunch.com/2024/05/01/openai-launches-new-model/ and give it to me as markdown so I can summarize it?

## When to prefer this

Use this endpoint when an AI agent needs to read and process the textual content of a public web page, especially when clean markdown output is needed for downstream LLM tasks like summarization or Q&A. Prefer it over general HTTP fetch when HTML-to-text conversion is required without building a parser yourself.

## Known failure modes

- URL is unreachable or returns a non-200 status — likely returns an error response with no content
- Page requires JavaScript rendering — content may be incomplete or empty
- URL points to a binary file (PDF, image) — may return empty or garbled content
- Payment not attached or insufficient — returns HTTP 402 Payment Required
- Rate limiting or timeout on the target server — may return partial content or error

## How this service works

Extract structured content and metadata from web pages using the Clawtious v2 web-extraction API.

## Output

Returns a JSON object with the page URL, title, format (markdown or text), content length, the extracted clean content as a string, and a boolean indicating whether the content was truncated.

## Example request

```json
{
 "input": {
  "body": {
   "url": "https://example.com",
   "format": "markdown",
   "maxLength": 5000
  },
  "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": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "URL to extract content from"
      },
      "format": {
       "type": "string",
       "description": "Output format: markdown or text"
      },
      "maxLength": {
       "type": "number",
       "description": "Max chars (500-50000)"
      }
     }
    },
    "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": {
      "url": {
       "type": "string"
      },
      "title": {
       "type": "string"
      },
      "format": {
       "type": "string"
      },
      "length": {
       "type": "number"
      },
      "content": {
       "type": "string"
      },
      "truncated": {
       "type": "boolean"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clawtious-creatormagic-ai-eea2f1ab/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)
