# JMT x402 Proxy Web Search

> JMT x402 Proxy Web Search is a paid API for AI agents from jmt-x402-proxy.jmthomasofficial.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns current web search results including titles, URLs, snippets, and source engine metadata for a given query.

## Facts

- Endpoint: GET https://jmt-x402-proxy.jmthomasofficial.workers.dev/v2/api/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/jmt-x402-proxy-web-search-7cc2ec5b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rryW3OmZjrfeHc3mbc-m7

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 jmt-x402-proxy-web-search-7cc2ec5b
```

Example prompt: Search the web for 'OpenAI GPT-5 release date' and give me the top results with titles, URLs, and snippets.

## When to prefer this

Use this endpoint when an AI agent needs raw, structured web search results with source metadata in real time, especially when a simple list of URLs, titles, and snippets is sufficient and no LLM synthesis is required. Prefer this over the sibling LLM-synthesized search endpoint when you want unprocessed results and lower latency. Best when the agent will perform its own analysis or filtering of the results.

## Known failure modes

- Missing required query parameter 'q' returns a 400 or validation error
- Empty or whitespace-only query rejected due to minLength:1 constraint
- Payment not provided or insufficient USDC balance causes a 402 Payment Required response
- Downstream search engine unavailable causes 503 or empty results
- Rate limiting or quota exceeded on the underlying search provider

## How this service works

Current web search results with titles, URLs, snippets, and source engine metadata.

## Output

A structured JSON object containing the original query string, a count of results, a timestamp, and an array of result objects each with a title, URL, snippet, and source engine metadata.

## 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",
       "minLength": 1,
       "description": "Web search query."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "query",
      "count",
      "results",
      "timestamp"
     ],
     "properties": {
      "count": {
       "type": "integer"
      },
      "query": {
       "type": "string"
      },
      "results": {
       "type": "array"
      },
      "timestamp": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jmt-x402-proxy-web-search-7cc2ec5b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jmt-x402-proxy.jmthomasofficial.workers.dev](https://www.zero.xyz/host/jmt-x402-proxy.jmthomasofficial.workers.dev/llms.txt)
