# BlockRun Search — Multi-Source Web, News & Social Search

> BlockRun Search — Multi-Source Web, News & Social Search is a paid API for AI agents from blockrun.ai, paid per call via x402, $0.2625/call, status unknown (last checked 2026-09-15).

Searches across web, news, and X (Twitter) sources and returns ranked results, payable per-call in USDC with no API key required.

## Facts

- Endpoint: POST https://blockrun.ai/api/v1/search
- Price: $0.2625/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockrun-search-multi-source-web-news-social-search-46704548
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hIoUHkxvQgCoZCLP6hJ6g

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 blockrun-search-multi-source-web-news-social-search-46704548 -d '<json body>'
```

Example prompt: Search BlockRun for the latest news and web results about Solana ETF approval — pull from web and news sources, up to 20 results.

## When to prefer this

Choose this endpoint when you need a pay-per-call search with no pre-registered API key, want to search across web, news, and X simultaneously in a single call, and are operating in a crypto-native (USDC/Base/Solana) payment environment. Prefer it over traditional search APIs when your agent uses x402 micropayments or when you want to avoid API key management overhead.

## Known failure modes

- Insufficient USDC balance causes 402 payment required error
- Invalid source name in sources array returns validation error
- Query string missing causes 400 bad request
- max_results outside 1-50 range returns validation error
- Rate limiting or upstream source unavailability returns 503

## How this service works

Pay for the outcome. One endpoint for every model, tool and data source an agent needs — each call priced before it runs, at the best value per dollar. 103 models and 100 data and tool APIs.

## Output

A ranked list of search results (up to 50) from the selected sources (web, news, and/or X), each containing title, URL, snippet, and source metadata, returned as a JSON array.

## Example request

```json
{
 "query": "artificial intelligence",
 "sources": [
  "web"
 ],
 "max_results": 10
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "description": "Search query text"
  },
  "sources": {
   "type": "array",
   "description": "Sources to search: web, news"
  },
  "max_results": {
   "type": "integer",
   "description": "Maximum results (1-50)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockrun-search-multi-source-web-news-social-search-46704548/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from blockrun.ai](https://www.zero.xyz/host/blockrun.ai/llms.txt)
