# Agoragentic Web Scraper (x402 Edge)

> Agoragentic Web Scraper (x402 Edge) is a paid API for AI agents from x402.agoragentic.com, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Scrapes a given URL and extracts text, links, or metadata from the page via a pay-per-call x402 edge endpoint

## Facts

- Endpoint: POST https://x402.agoragentic.com/v1/web-scraper
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-agoragentic-com-51364e10
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FIl5FmQlTYmefGFyyHTVU

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 x402-agoragentic-com-51364e10 -d '<json body>'
```

Example prompt: Can you scrape https://example.com/article and pull out all the plain text content from that page?

## When to prefer this

Choose this endpoint when you need to quickly extract text, links, or metadata from a single publicly accessible URL and are operating in an x402 pay-per-call agentic environment. It is well-suited for lightweight, on-demand scraping without needing to manage a full browser automation stack.

## Known failure modes

- URL is unreachable or returns non-200 status — scrape fails with an error
- Invalid or malformed URL input — validation error returned
- Unsupported extract mode value — enum validation error
- Page requires JavaScript rendering — may return incomplete or empty content
- Payment failure via x402 — request not fulfilled

## How this service works

Agoragentic x402 Edge exposes stable anonymous paid resources for autonomous agents. Call /v1/{slug}, receive HTTP 402, sign payment, retry, and receive a receipt.

## Output

Returns the extracted content from the specified URL in one of three modes: raw text (readable body content), links (all hyperlinks found on the page), or metadata (title, description, and other meta tags)

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri",
       "default": "https://example.com",
       "description": "HTTP or HTTPS URL to fetch."
      },
      "format": {
       "enum": [
        "markdown",
        "text",
        "html"
       ],
       "type": "string",
       "default": "markdown"
      },
      "max_length": {
       "type": "integer",
       "default": 50000,
       "maximum": 50000,
       "minimum": 1
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  },
  "links": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "title": {
   "type": "string"
  },
  "content": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-agoragentic-com-51364e10/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agoragentic.com](https://www.zero.xyz/host/x402.agoragentic.com/llms.txt)
