# 17711 Smart Services – Web Search

> 17711 Smart Services – Web Search is a paid API for AI agents from api.17711.xyz, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Performs a real internet search and returns ranked results (URL, title, snippet) for a given query string, priced per call in USDC via x402.

## Facts

- Endpoint: POST https://api.17711.xyz/registry/websearch/v1/websearch/search_web
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/17711-smart-services-web-search-e0ea27bf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VjlFIe6ml4WFw1-MLSJ3R

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 17711-smart-services-web-search-e0ea27bf -d '<json body>'
```

Example prompt: Search the web for 'best Rust async runtime comparison 2024' and give me the top results with their URLs and summaries.

## When to prefer this

Choose this endpoint when you need live, real-time web search results with URLs and snippets — especially in an agentic pipeline that already handles x402 micropayments or wants a freemium quota for low-volume use. Prefer it over static knowledge bases when recency matters, and over full-page scrapers when you only need ranked result metadata rather than full page content.

## Known failure modes

- Empty or vague query returns no results
- Query triggers content filtering and returns empty result set
- Free hourly quota exhausted — returns HTTP 402 PAYMENT-REQUIRED requiring x402 payment
- Malformed request body (missing required 'query' field) returns 400 Bad Request
- Upstream search provider timeout returns 504 or partial results

## How this service works

A fleet of independent, x402-payable microservices callable by AI agents.

## Output

An array of search result objects, each containing a URL (string), a page title (string), and a short snippet/summary (string) describing the matched content.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "The search query text, e.g. `\"rust async runtime comparison\"`."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "results": [
  {
   "url": "string",
   "title": "string",
   "snippet": "string"
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/17711-smart-services-web-search-e0ea27bf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.17711.xyz](https://www.zero.xyz/host/api.17711.xyz/llms.txt)
