# Apollo Web Search via Brave Search API

> Apollo Web Search via Brave Search API is a paid API for AI agents from apolloai.team, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Performs a web search using Brave Search and returns top results with titles, URLs, and descriptions.

## Facts

- Endpoint: GET https://apolloai.team/api/scrape/search
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apollo-web-search-via-brave-search-api-f8dc8b9c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UA-eQaOGGyDG0iOP18Ym6

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 apollo-web-search-via-brave-search-api-f8dc8b9c
```

Example prompt: Search the web for 'best open-source AI agent frameworks in 2025' and give me the top 10 results with titles, URLs, and descriptions.

## When to prefer this

Choose this endpoint when an AI agent needs live web search results with titles, URLs, and snippets — especially when Brave Search's privacy-focused index is preferred, when results need to be filtered to a specific domain via the 'site' parameter, or when operating in a pay-per-call x402 micropayment context rather than a subscription-based search API.

## Known failure modes

- Missing required 'q' parameter returns validation error
- count parameter outside 1-20 range may return default or error
- Rate limiting or upstream Brave Search API outage returns 5xx
- Invalid site filter returns empty results rather than an error
- Payment not processed (x402) results in 402 response before search executes

## How this service works

Web search via Brave Search API — returns top results with titles, URLs, and descriptions.

## Output

A JSON object containing the original query, total result count, and an array of up to 20 results each with a title, URL, description snippet, and recency age string (e.g. '2 days ago').

## 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",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Search query"
      },
      "site": {
       "type": "string",
       "description": "Limit to specific site (optional)"
      },
      "count": {
       "type": "string",
       "description": "Number of results (1-20, default 10)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "query": "AI agent frameworks 2026",
  "results": [
   {
    "age": "2 days ago",
    "url": "https://example.com/article",
    "title": "Top AI Agent Frameworks",
    "description": "Comprehensive comparison..."
   }
  ],
  "total_results": 10
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apollo-web-search-via-brave-search-api-f8dc8b9c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apolloai.team](https://www.zero.xyz/host/apolloai.team/llms.txt)
