# Freysa Intelligence Web Search

> Freysa Intelligence Web Search is a paid API for AI agents from economic-agent-369.freysa.dev, paid per call via x402, $0.05/call, status down (last checked 2026-09-16).

Performs a web search query and returns a ranked list of results, accessible via pay-per-call on Base using x402.

## Facts

- Endpoint: POST https://economic-agent-369.freysa.dev/api/web-search
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/freysa-intelligence-web-search-2c76d1e5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fFP4lOiNpcehSal2Qhrgw

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 freysa-intelligence-web-search-2c76d1e5 -d '<json body>'
```

Example prompt: Search the web for the latest news about the Base blockchain ecosystem and give me the top 10 results.

## When to prefer this

Choose this endpoint when you need programmatic, pay-per-call web search without setting up a Google or Bing API key, especially within an agentic workflow on Base that already handles x402 micropayments. It is particularly useful for agents operating in the crypto/DeFi space that need to combine web search with other Freysa security intelligence capabilities on the same host.

## Known failure modes

- Missing required 'query' field returns a validation error
- Payment failure or insufficient USDC balance on Base blocks the call
- Empty results array returned when query matches no indexed content
- Rate limiting or quota errors if called too frequently
- Malformed JSON body causes a 400 Bad Request response

## How this service works

Security intelligence layer for autonomous agents. On-chain security, token risk analysis, wallet forensics, and transaction simulation. Pay-per-call via x402 on Base.

## Output

Returns a JSON object containing the original search query string and an array of search results. Each result in the array typically includes a title, URL, and snippet or summary of the matched web content.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "limit": {
   "type": "number",
   "description": "Number of results (default: 10)"
  },
  "query": {
   "type": "string",
   "description": "Search query"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "description": "Original query"
  },
  "results": {
   "type": "array",
   "description": "Search results"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/freysa-intelligence-web-search-2c76d1e5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from economic-agent-369.freysa.dev](https://www.zero.xyz/host/economic-agent-369.freysa.dev/llms.txt)
