# Web Search API (aws-bedrock.grok.me)

> Web Search API (aws-bedrock.grok.me) is a paid API for AI agents from aws-bedrock.grok.me, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns web search results (titles, URLs, and snippets) for a given query string, paid per-call via x402 USDC micropayment on Solana.

## Facts

- Endpoint: GET https://aws-bedrock.grok.me/api/v1/search
- 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/web-search-api-aws-bedrock-grok-me-35e86d5c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9BQNbo-lCGl1iRMbIzTjc

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 web-search-api-aws-bedrock-grok-me-35e86d5c
```

Example prompt: Search the web for the latest news about Solana DeFi protocols and give me the top results with titles and links.

## When to prefer this

Choose this endpoint when your agent needs live, indexed web search results with titles, URLs, and snippets and can handle x402 micropayment flows on Solana. It is well-suited for lightweight per-query billing without subscriptions. Prefer it over scraping endpoints when you need broad keyword search across many pages rather than content extraction from a specific URL.

## Known failure modes

- 402 Payment Required returned when no payment header is provided — agent must pay and retry with PAYMENT-SIGNATURE header
- Empty or irrelevant results for highly niche or misspelled queries
- Rate limiting or service unavailability if the upstream index is down
- Invalid or malformed query parameter returns an error response
- Payment verification failure if signature is invalid or funds are insufficient

## How this service works

Tavily web search for agents. GET /api/v1/search?q= → HTTP 402 $0.008 USDC Solana or Base. Real Tavily results, no API key. Cheaper than tavily.com x402 ($0.01). search.

## Output

A list of web search results, each containing a page title, URL, and a short text snippet summarizing the relevant content from that page.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string",
       "description": "Search query"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/web-search-api-aws-bedrock-grok-me-35e86d5c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aws-bedrock.grok.me](https://www.zero.xyz/host/aws-bedrock.grok.me/llms.txt)
