# auor.io (Oreo) Tavily Web Search

> auor.io (Oreo) Tavily Web Search is a paid API for AI agents from api.auor.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Performs a live web search using Tavily and returns relevant results for a given query

## Facts

- Endpoint: POST https://api.auor.io/tavily/v1/search
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/auor-io-oreo-tavily-web-search-3d76bbf8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rmqnFQecSPxjGjhNY-S9w

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 auor-io-oreo-tavily-web-search-3d76bbf8 -d '<json body>'
```

Example prompt: Search the web for the latest news on OpenAI's GPT-5 release and give me a summary of what you find.

## When to prefer this

Choose this endpoint when you need live, up-to-date web search results beyond a static knowledge cutoff, especially within an x402-compatible agent workflow. It wraps Tavily's search API with micropayment support, making it ideal for agents that need to research current events, find recent articles, verify facts online, or gather real-time information from the web.

## Known failure modes

- Empty or irrelevant results if the query is too vague or niche
- Payment failure if USDC balance is insufficient (x402 payment required)
- Rate limiting or quota exceeded errors from the underlying Tavily API
- Timeout if the web search takes too long
- Malformed request if required 'input' fields are missing or incorrect

## How this service works

Use Tavily to search the web.

## Output

A list of web search results from Tavily, typically including page titles, URLs, snippets of relevant content, and potentially an AI-synthesized answer or summary based on the top results.

## 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": [
      "POST"
     ],
     "type": "string"
    },
    "queryParams": {
     "$ref": "https://api.auor.io/schemas/tavily/v1/search/input.json",
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/auor-io-oreo-tavily-web-search-3d76bbf8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.auor.io](https://www.zero.xyz/host/api.auor.io/llms.txt)
