# engedi.digi-life17 URL-to-Markdown Extractor

> engedi.digi-life17 URL-to-Markdown Extractor is a paid API for AI agents from engedi.digi-life17.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Fetches any URL and returns its content as clean, LLM-ready Markdown text

## Facts

- Endpoint: GET https://engedi.digi-life17.workers.dev/api/extract
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/engedi-digi-life17-url-to-markdown-extractor-d89db31e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cmCfwHTBDXDeVozCGF3fE

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 engedi-digi-life17-url-to-markdown-extractor-d89db31e
```

Example prompt: Can you pull the content from https://example.com/article and give it to me as clean markdown so I can use it in my prompt?

## When to prefer this

Choose this endpoint when you need to feed a webpage's content into an LLM pipeline and want clean Markdown rather than raw HTML. It is especially useful for article extraction, documentation scraping, or summarization tasks where noise-free text is critical. Prefer it over generic HTTP fetch when you need pre-processed, LLM-optimized output without building your own HTML parser.

## Known failure modes

- URL is unreachable or returns non-200 status — extraction fails with success:false
- URL points to a page with no extractable text content (e.g. purely JavaScript-rendered with no fallback)
- URL is malformed or missing — returns error due to missing required 'url' query parameter
- Rate limiting or firewall on target site blocks the fetch
- Low confidence score if extracted content is sparse or ambiguous

## How this service works

Extract clean LLM-ready Markdown from any URL

## Output

Returns a JSON object with a 'data' field containing the extracted Markdown content of the page, along with metadata including whether the result was cached, the source, a confidence score, and a last_updated timestamp, plus a boolean 'success' flag.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "URL to extract content from"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "data": {
     "type": "object"
    },
    "_meta": {
     "type": "object",
     "properties": {
      "cached": {
       "type": "boolean"
      },
      "source": {
       "type": "string"
      },
      "confidence": {
       "type": "number"
      },
      "last_updated": {
       "type": "string"
      }
     }
    },
    "success": {
     "type": "boolean"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/engedi-digi-life17-url-to-markdown-extractor-d89db31e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from engedi.digi-life17.workers.dev](https://www.zero.xyz/host/engedi.digi-life17.workers.dev/llms.txt)
