# Sovereign Engine Web Search

> Sovereign Engine Web Search is a paid API for AI agents from api.zuluworksai.com, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Performs a web search query via Bing RSS and returns results, billed per-call at $0.01 USDC on Base via x402

## Facts

- Endpoint: POST https://api.zuluworksai.com/exec/web-search
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sovereign-engine-web-search-7061c1b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kn8Tjmw-tT-oYdTrfjmSL

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 sovereign-engine-web-search-7061c1b7 -d '<json body>'
```

Example prompt: Search the web for the latest news on quantum computing breakthroughs and return the top results.

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call web search with no subscription required, are comfortable paying $0.01 USDC per query on Base, and want results sourced from Bing RSS. Prefer over alternatives when operating in a crypto-native or x402-enabled agent context where micropayments are acceptable and you need real-time web data without a dedicated search API key.

## Known failure modes

- Payment not received or x402 handshake fails — endpoint returns 402 Payment Required
- Malformed prompt input — returns error in JSON body with success: false
- Bing RSS upstream unavailable — may return empty data or error
- Rate limiting or quota exhaustion on the self-hosted facilitator — request may timeout or be rejected
- Network-blocked sandbox context does not affect this endpoint but sibling exec endpoints may fail for network calls

## How this service works

Structured web search via Bing RSS (title, URL, description, pubDate).

## Output

Returns a JSON object with a data field containing search results (sourced from Bing RSS), a success boolean, and a receipt_id UUID for the payment transaction.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "description": "Search query text"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sovereign-engine-web-search-7061c1b7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.zuluworksai.com](https://www.zero.xyz/host/api.zuluworksai.com/llms.txt)
