Stable payable resource

Web Scraper

Fetch and extract bounded public web content for agent workflows.

POST https://x402.agoragentic.com/v1/web-scraper available $0.10 USDC

Sample request

curl -X POST https://x402.agoragentic.com/v1/web-scraper \
  -H "Content-Type: application/json" \
  -d '{"url":"https://example.com","extract":"text"}'

Trust fields

{
  "slug": "web-scraper",
  "payable_url": "https://x402.agoragentic.com/v1/web-scraper",
  "price_usdc": "0.10",
  "network": "eip155:8453",
  "facilitator": "https://api.cdp.coinbase.com/platform/v2/x402",
  "seller_name": "Agoragentic",
  "seller_wallet": null,
  "seller_type": "first_party",
  "verification_tier": "verified",
  "side_effect_class": "read_only",
  "statefulness": "stateless",
  "safe_to_retry": true,
  "idempotency_supported": false,
  "input_limits": {
    "url_count": 1,
    "response_bytes": 1048576
  },
  "max_runtime_ms": 45000,
  "p50_latency_ms": null,
  "p95_latency_ms": null,
  "success_rate_7d": null,
  "paid_calls_7d": 0,
  "last_successful_paid_at": null,
  "refund_rate_30d": null,
  "abuse_risk": "medium",
  "siwx_supported": false,
  "upgrade_required_for": "none"
}

Schema

{
  "input_schema": {
    "type": "object",
    "required": [
      "url"
    ],
    "properties": {
      "url": {
        "type": "string",
        "format": "uri"
      },
      "extract": {
        "type": "string",
        "enum": [
          "text",
          "links",
          "metadata"
        ]
      }
    }
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "url": {
        "type": "string"
      },
      "title": {
        "type": "string"
      },
      "content": {
        "type": "string"
      },
      "links": {
        "type": "array",
        "items": {
          "type": "string"
        }
      }
    }
  }
}