# Orthogonal Intelligent Web Search

> Orthogonal Intelligent Web Search is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Performs an AI-powered web search with optional query expansion (fan-out) and domain filtering, returning ranked results at 1 credit per result.

## Facts

- Endpoint: POST https://x402.orthogonal.com/context-dev/web/search
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-intelligent-web-search-ae6b2965
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JmyJczPZaYTGI1vmjOnbw

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 orthogonal-intelligent-web-search-ae6b2965 -d '<json body>'
```

Example prompt: Search the web for the latest research on transformer architectures in 2024 — expand the query into multiple angles to improve coverage, and only pull results from arxiv.org and github.com.

## When to prefer this

Choose this endpoint when you need live web search with intelligent query expansion (fan-out) to maximize recall across different phrasings. Prefer it over generic search APIs when you want fine-grained domain control (whitelisting or blacklisting specific sites) or need to ensure freshness of results. Especially valuable for research agents that need comprehensive, multi-angle coverage of a topic from authoritative or curated domains.

## Known failure modes

- Empty query string returns an error or zero results
- Invalid domain format in include_domains or exclude_domains may be silently ignored or cause an error
- Overly restrictive domain filters returning zero results
- Insufficient credits causing payment failure (x402 payment required)
- Freshness filter with no recent content returns few or zero results
- Query fanout may increase latency and credit consumption

## How this service works

Performs an intelligent web search. Costs 1 credit per returned result.

## Output

A list of web search results, each containing a URL, page title, and snippet or summary. The number of results determines credit cost (1 credit per returned result). Results may be filtered by domain and recency, and can cover multiple query angles if queryFanout is enabled.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "description": "The search query"
  },
  "freshness": {
   "type": "string",
   "description": "Filter results by recency"
  },
  "queryFanout": {
   "type": "boolean",
   "description": "When true, uses an LLM to expand the query into multiple diverse search queries that are executed in parallel, improving recall by covering different angles and phrasings of the original intent"
  },
  "exclude_domains": {
   "type": "array",
   "description": "Exclude results from these domains (e.g. [\"pinterest.com\", \"reddit.com\"])"
  },
  "include_domains": {
   "type": "array",
   "description": "Only include results from these domains (e.g. [\"arxiv.org\", \"github.com\"])"
  }
 }
}
```

## More

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