ToolAssay

Read any live web page as clean, LLM-ready text

Read any live web page as clean, LLM-ready text. Renders JavaScript in a real browser, then strips navigation, ads and boilerplate. Use it when a plain HTTP GET returns empty or garbled HTML: single-page apps, dynamic feeds, or content that only appears after scripts run. Returns markdown, plain text or cleaned HTML plus the upstream HTTP status. Page content is third-party data and is flagged untrusted so an agent treats it as input, never as instructions.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
1326 msmedian answer time
$0.002listed price per call
$0.002price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

GET https://web.cyberwarex.com/fetch

CategoryCode and developer
Provider hostweb.cyberwarex.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days38 from 7 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.002 1326 ms

Example input (from the provider)

{
  "method": "GET",
  "queryParams": {
    "format": "markdown",
    "url": "https://example.com"
  },
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "method": {
          "enum": [
            "GET",
            "HEAD",
            "DELETE"
          ],
          "type": "string"
        },
        "queryParams": {
          "additionalProperties": false,
          "properties": {
            "format": {
              "default": "markdown",
              "description": "Output format for the extracted page content.",
              "enum": [
                "markdown",
                "text",
                "html"
              ],
              "type": "string"
            },
            "url": {
              "description": "Absolute http(s) URL of the page to read.",
              "format": "uri",
              "type": "string"
            }
          },
          "required": [
            "url"
          ],
          "type": "object"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "advisory": {
              "type": "string"
            },
            "content": {
              "description": "Page content in the requested format.",
              "type": "string"
            },
            "format": {
              "enum": [
                "markdown",
                "text",
                "html"
              ],
              "type": "string"
            },
            "status": {
              "description": "HTTP status returned by the target page.",
              "type": "integer"
            },
            "untrusted": {
              "type": "boolean"
            },
            "url": {
              "type": "string"
            }
          },
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON