# SocialFetch Web Ask

> SocialFetch Web Ask 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-15).

Fetches a web page and answers a natural-language question about its content using an LLM.

## Facts

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

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-ask-9d78d002
```

Example prompt: What does the page at https://www.example.com/about say about their refund policy?

## When to prefer this

Use this endpoint when you need to answer a specific natural-language question about the content of a known web page URL, rather than performing a broad web search. It is ideal when you already have the URL and want targeted Q&A rather than full-page scraping or structured data extraction.

## Known failure modes

- URL is unreachable or returns an error — no content to analyze
- Page content is too large or complex to process — partial or degraded answer
- Question is ambiguous or unrelated to page content — answer may be unhelpful or a refusal
- Paywalled or login-gated page — content unavailable for extraction
- Malformed URL input — request rejected with validation error
- Rate limit or payment failure — request rejected with 402 or 429 status

## How this service works

Ask a natural-language question about a specific web page and get an LLM-generated answer.

## Output

An LLM-generated natural-language answer to the submitted question, derived from the fetched content of the specified web page URL.

## 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",
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "maxLength": 500,
       "minLength": 1,
       "description": "Natural-language question to answer about the page content."
      },
      "url": {
       "type": "string",
       "maxLength": 2083,
       "minLength": 1,
       "description": "Web page URL to fetch."
      }
     }
    }
   },
   "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-ask-9d78d002/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)
