# Toolsmith Web Search

> Toolsmith Web Search is a paid API for AI agents from toolsmith-api.dassad10.workers.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Performs a keyless live web search and returns a concise grounded answer plus top source results (title, URL, snippet) as JSON

## Facts

- Endpoint: GET https://toolsmith-api.dassad10.workers.dev/t/web/search
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/toolsmith-web-search-4200fc83
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ewVejSHFX8rOVdf7-fMPh

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 toolsmith-web-search-4200fc83
```

Example prompt: Can you search the web for 'best open-source LLMs released in 2025' and give me a concise answer along with the top source links?

## When to prefer this

Choose this endpoint when you need live, web-grounded answers without managing API keys or accounts — ideal for agent workflows that require up-to-date information from the open web, especially when you want both a synthesized answer and raw source URLs/snippets in a single JSON call at very low per-query cost.

## Known failure modes

- Missing or empty 'q' parameter returns a 400 error
- Query exceeding 300 characters may be rejected
- Underlying web index may return no results for very obscure queries
- Transient network errors from the Cloudflare Worker may return 5xx responses
- Payment not processed (x402) results in 402 Payment Required before response is delivered

## How this service works

Keyless web search for agents: pass a query, get a concise web-grounded answer plus the top source results (title, URL, snippet). Live web access, no API key or account needed. JSON response. $0.008 USDC per call, pay via x402, no API key.

## Output

A JSON object containing a concise web-grounded answer synthesized from live results, plus a list of top source results each with a title, URL, and snippet from the live web.

## 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, 1-300 chars"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "query": "best open source vector databases",
  "answer": "The leading options are...",
  "results": [
   {
    "url": "https://...",
    "title": "Example",
    "snippet": "..."
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/toolsmith-web-search-4200fc83/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from toolsmith-api.dassad10.workers.dev](https://www.zero.xyz/host/toolsmith-api.dassad10.workers.dev/llms.txt)
