# Omnicall Web Search Endpoint

> Omnicall Web Search Endpoint is a paid API for AI agents from omnicall.gocreativeai.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Performs a live web search via Omnicall's all-in-one agent gateway, returning real-time results with no API key required, paid per call in USDC.

## Facts

- Endpoint: GET https://omnicall.gocreativeai.com/v1/web/%7Barg%7D
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/omnicall-web-search-endpoint-b751264c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_twUHEC6SMsAjiiWlVRJY-

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 omnicall-web-search-endpoint-b751264c
```

Example prompt: Search the web for the latest news on OpenAI's newest model releases and give me a summary of what you find — use Omnicall's pay-per-call web search so I don't need to set up any API keys.

## When to prefer this

Choose this endpoint when your agent needs real-time web search results without managing API keys or subscriptions, and you want to pay only per call in USDC on Base or Solana via the x402 protocol. Ideal for agents operating in crypto-native environments that already handle x402 micropayments.

## Known failure modes

- Payment not received or insufficient USDC balance — 402 Payment Required
- Invalid or missing path argument — 400 Bad Request
- Upstream search service unavailable — 503 Service Unavailable
- Rate limit exceeded — 429 Too Many Requests
- Malformed query string causing no results returned

## How this service works

Omnicall is the all-in-one agent gateway: 247 LLMs plus image, video, voice & music generation, live crypto/DeFi/prediction-market data, web search and on-chain reads — one OpenAI-compatible endpoint, pay per call in USDC on Base or Solana, no API key.

## Output

Returns live web search results for the given query argument, including relevant URLs, page titles, and text snippets drawn from current web content.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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