ToolAssay

Read any web page or article

Read any web page or article: fetch up to 5 URLs in one batch call and extract the main content as clean, LLM-ready markdown or plain text. Convert webpages to markdown, scrape page text, pull article content for RAG ingestion and AI agent context.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
597 msmedian answer time
$0.01listed price per call
$0.01price 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://websearch.use.x402atlas.com/extract

CategorySearch and research
Provider hostwebsearch.use.x402atlas.com
Networkseip155:137, eip155:42161, eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Payment schemesexact
Self-reported calls, 30 days5 from 4 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.01 597 ms

Example input (from the provider)

{
  "method": "GET",
  "queryParams": {
    "chunks_per_source": 3,
    "format": "markdown",
    "query": "artificial intelligence",
    "urls": "https://en.wikipedia.org/wiki/Artificial_intelligence"
  },
  "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"
          ],
          "type": "string"
        },
        "queryParams": {
          "properties": {
            "chunks_per_source": {
              "description": "Relevant snippets per URL, 1..5 (requires query)",
              "maximum": 5,
              "minimum": 1,
              "type": "integer"
            },
            "format": {
              "default": "markdown",
              "description": "Output content format",
              "enum": [
                "markdown",
                "text"
              ],
              "type": "string"
            },
            "query": {
              "description": "Optional intent \u2014 extracted chunks are reranked by relevance to it",
              "maxLength": 1000,
              "type": "string"
            },
            "urls": {
              "description": "One URL or an array of up to 5 absolute http(s) URLs to extract content from",
              "oneOf": [
                {
                  "type": "string"
                },
                {
                  "items": {
                    "type": "string"
                  },
                  "maxItems": 5,
                  "minItems": 1,
                  "type": "array"
                }
              ]
            }
          },
          "required": [
            "urls"
          ],
          "type": "object"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "failed_urls": {
              "description": "URLs that could not be extracted",
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "queried_at": {
              "description": "Time the extraction was executed (UTC)",
              "format": "date-time",
              "type": "string"
            },
            "results": {
              "items": {
                "properties": {
                  "content": {
                    "description": "Extracted page content as markdown or text",
                    "type": "string"
                  },
                  "url": {
                    "type": "string"
                  }
                },
                "required": [
                  "url",
                  "content"
                ],
                "type": "object"
              },
              "type": "array"
            }
          },
          "required": [
            "queried_at",
            "results"
          ],
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON