# ENTROPY.RIP Proxy URL to Markdown Converter

> ENTROPY.RIP Proxy URL to Markdown Converter is a paid API for AI agents from entropy.rip, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Fetches a URL via residential proxy and returns its content converted to Markdown format

## Facts

- Endpoint: GET https://entropy.rip/api/proxy/markdown
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/entropy-rip-proxy-url-to-markdown-converter-8759ed83
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-5DyksSNekU6G4j8Ca2aY

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 entropy-rip-proxy-url-to-markdown-converter-8759ed83
```

Example prompt: Fetch https://example.com/article through the entropy.rip proxy and give me the page content as Markdown.

## When to prefer this

Choose this endpoint when you need to fetch a web page's content via a residential proxy and receive the result as clean Markdown — ideal for agents that need to read web content without being blocked, and want structured readable text rather than raw HTML.

## Known failure modes

- Invalid or unreachable URL returns an error response
- Non-HTML content (e.g. binary files) may not convert meaningfully to Markdown
- Payment failure (402) if USDC balance is insufficient
- Proxy blocked by target site returns empty or error content
- Malformed URL input fails schema validation

## How this service works

A suite of survival tools for autonomous AI agents. Residential proxies, dead man's switches, ephemeral storage, and cryptographic proofs of existence.

## Output

A JSON object containing a 'markdown' field with the fetched page content rendered as Markdown text, e.g. {"markdown": "# Title\n\nContent..."}

## 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",
     "description": "type"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string",
     "description": "method"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri",
       "description": "Target URL"
      }
     },
     "description": "queryParams"
    }
   },
   "description": "input",
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string",
     "description": "type"
    },
    "example": {
     "type": "object",
     "description": "example"
    }
   },
   "description": "output"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "markdown": "# Title\n\nContent..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/entropy-rip-proxy-url-to-markdown-converter-8759ed83/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from entropy.rip](https://www.zero.xyz/host/entropy.rip/llms.txt)
