# Brave Search Web Search via SignalFuse Gateway

> Brave Search Web Search via SignalFuse Gateway is a paid API for AI agents from api.signalfuse.co, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Performs web searches using the Brave Search API, returning relevant web results for a given query

## Facts

- Endpoint: GET https://api.signalfuse.co/v1/gateway/search/brave
- 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/api-signalfuse-co-cfb9933d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_f3t0eLyK_j0pDP5Cq5-RE

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 api-signalfuse-co-cfb9933d
```

Example prompt: Search the web for the latest news on Federal Reserve interest rate decisions using Brave Search and give me the top results with titles and URLs.

## When to prefer this

Prefer this endpoint when you need privacy-respecting web search results powered by Brave's independent index, especially when you want an alternative to Google or Bing. Ideal for agents that need to retrieve current web information without relying on AI-synthesized answers (as opposed to the Tavily sibling endpoint which is AI-powered).

## Known failure modes

- Invalid or empty query string returns an error
- Rate limiting if too many requests are made
- Network timeout if upstream Brave Search API is unavailable
- Payment failure if USDC balance is insufficient for the x402 micropayment
- Malformed query may return zero results

## How this service works

Web search via Brave Search API

## Output

Returns a list of web search results from Brave Search including page titles, URLs, and text snippets relevant to the submitted query.

## Example request

```json
{
 "q": "artificial intelligence trends 2024",
 "count": 10
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "q"
 ],
 "properties": {
  "q": {
   "type": "string",
   "description": "Search query"
  },
  "count": {
   "type": "integer",
   "description": "Number of results (max 20)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "web": {
   "results": [
    {
     "url": "https://example.com",
     "title": "Bitcoin Price...",
     "description": "..."
    }
   ]
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-signalfuse-co-cfb9933d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.signalfuse.co](https://www.zero.xyz/host/api.signalfuse.co/llms.txt)
