# SocialFetch Web Crawl

> SocialFetch Web Crawl is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-14).

Synchronously fetches and returns the content of up to 5 web pages by URL in a single GET request.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/web/crawl
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-web-crawl-68ebef07
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_obXy_6_9qQ9gwGQFQY8Sn

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 socialfetch-web-crawl-68ebef07
```

Example prompt: Can you fetch the content of these three pages for me: https://example.com/about, https://example.com/pricing, and https://example.com/contact? I need to read what's on all of them.

## When to prefer this

Choose this endpoint when you need to quickly fetch and read the raw content of up to 5 specific web pages in a single synchronous call, especially in agent pipelines where you have known URLs and need their content without running a full site crawl. Prefer this over heavier crawling solutions when speed and simplicity matter and you already know the target URLs.

## Known failure modes

- Invalid or malformed URL returns an error
- More than 5 URLs provided exceeds maxItems limit and is rejected
- URL is unreachable or returns a non-200 status
- URL exceeds 2083 character limit
- Payment not provided or insufficient USDC balance causes 402 rejection
- Private or paywalled pages may return incomplete or blocked content

## How this service works

Crawl a small set of web pages synchronously.

## Output

Returns the fetched content of each requested URL — up to 5 pages — including the page body/text as retrieved synchronously via HTTP GET.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "array",
       "items": {
        "type": "string",
        "maxLength": 2083,
        "minLength": 1,
        "description": "Web page URL to fetch."
       },
       "maxItems": 5,
       "minItems": 1,
       "description": "URLs to crawl. Repeat the `url` query parameter for multiple pages (max 5)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-web-crawl-68ebef07/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
