ToolAssay

Fetch one public web page and return its readable content as clean text or markd

Fetch one public web page and return its readable content as clean text or markdown, with JavaScript executed, so the result reads like the page a human sees. The retrieval half of research: pair it with /search to go from a query to grounded page text. Returns the content, its length, the final URL and the HTTP status. Truncate with max_chars.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
1006 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://search.cyberwarex.com/contents

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

Our checks, last 30 days

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

Example input (from the provider)

{
  "method": "GET",
  "queryParams": {
    "format": "markdown",
    "max_chars": 8000,
    "url": "https://docs.x402.org"
  },
  "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": "Content format.",
              "enum": [
                "markdown",
                "text"
              ],
              "type": "string"
            },
            "max_chars": {
              "default": 8000,
              "description": "Truncate the content to this many characters.",
              "maximum": 20000,
              "minimum": 500,
              "type": "integer"
            },
            "url": {
              "description": "Public http(s) URL to read.",
              "type": "string"
            }
          },
          "required": [
            "url"
          ],
          "type": "object"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "chars": {
              "type": "integer"
            },
            "content": {
              "description": "Readable page content (untrusted third-party data).",
              "type": "string"
            },
            "final_url": {
              "type": "string"
            },
            "format": {
              "type": "string"
            },
            "status": {
              "type": "integer"
            },
            "truncated": {
              "type": "boolean"
            },
            "url": {
              "type": "string"
            }
          },
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON