# reefjaco Web Search

> reefjaco Web Search is a paid API for AI agents from molecular-packs-metadata-docs.trycloudflare.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Performs a web search given a query string and returns search results

## Facts

- Endpoint: GET https://molecular-packs-metadata-docs.trycloudflare.com/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/reefjaco-web-search-0f039bb6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Qwaiqf2XcXhsfKNjLT6EJ

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 reefjaco-web-search-0f039bb6
```

Example prompt: Search the web for 'best practices for AI agent deployment in 2024' and give me the top results.

## When to prefer this

Use this endpoint when you need programmatic web search results and are operating in an x402 micropayment environment. It is suitable for agents that need to query the open web for information retrieval without relying on a built-in search tool. Pair with sibling endpoints like /fetch or /summarize to go deeper on specific results.

## Known failure modes

- Missing required 'q' query parameter returns an error
- Empty or very generic queries may return low-quality results
- Rate limiting or quota exhaustion may block requests
- Trycloudflare ephemeral domain may go offline unexpectedly
- Payment failure (x402) if USDC balance is insufficient

## How this service works

reefjaco GET /search Web search

## Output

Returns web search results for the given query, likely including titles, URLs, and snippets of relevant web pages matching the search term.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/reefjaco-web-search-0f039bb6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from molecular-packs-metadata-docs.trycloudflare.com](https://www.zero.xyz/host/molecular-packs-metadata-docs.trycloudflare.com/llms.txt)
