# Blockrun Exa Neural & Keyword Web Search

> Blockrun Exa Neural & Keyword Web Search is a paid API for AI agents from sol.blockrun.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Performs neural and keyword web search with optional category filtering across company, news, research papers, PDFs, GitHub, tweets, LinkedIn profiles, and financial reports

## Facts

- Endpoint: POST https://sol.blockrun.ai/api/v1/exa/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sol-blockrun-ai-ceded163
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bnESaCIgZWirqZozTKLCi

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 sol-blockrun-ai-ceded163 -d '<json body>'
```

Example prompt: Search the web for recent news about OpenAI's latest model releases, limit to 15 results and only look at news sources.

## When to prefer this

Use this endpoint when you need both neural (semantic/meaning-based) and keyword web search with structured category filtering. It is especially valuable when you want to restrict results to a specific content type like research papers, financial reports, tweets, LinkedIn profiles, or GitHub repositories — categories not typically available in generic search APIs.

## Known failure modes

- Invalid category filter value returns an error
- Query string missing causes 400 bad request
- numResults exceeding 100 returns an error
- Payment not provided or insufficient USDC causes 402 payment required
- includeDomains and excludeDomains conflict may return empty results

## How this service works

Neural and keyword web search. Optional category filter: company, research paper, news, pdf, github, tweet, personal site, linkedin profile, financial report.

## Output

A list of web search results including URLs, titles, and content snippets, filtered by the specified category (e.g. news, research paper, company, tweet, LinkedIn profile, financial report, PDF, GitHub) and restricted to the requested number of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "description": "Natural-language search query."
  },
  "category": {
   "type": "string",
   "description": "Optional category filter: company, research paper, news, pdf, github, tweet, personal site, linkedin profile, financial report."
  },
  "numResults": {
   "type": "number",
   "description": "Number of results to return (default 10, max 100)."
  },
  "excludeDomains": {
   "type": "array",
   "description": "Exclude these domains from results."
  },
  "includeDomains": {
   "type": "array",
   "description": "Restrict results to these domains."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sol-blockrun-ai-ceded163/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sol.blockrun.ai](https://www.zero.xyz/host/sol.blockrun.ai/llms.txt)
