> For the complete documentation index, see [llms.txt](https://archer-bot.gitbook.io/archer.bot/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://archer-bot.gitbook.io/archer.bot/what-you-can-do/web-search.md).

# Web Search & Market Research

Crypto moves too fast for an LLM's training data to keep up. When you ask Archer a question that depends on current information (news, regulation, recent launches, ecosystem updates), it routes through live web search instead of guessing from cached knowledge.

## Sample Input Queries

* *"What's happening with Ethereum lately?"*
* *"Any news about the Solana ecosystem?"*
* *"Latest crypto regulation news"*
* *"What did the Fed announce today?"*
* *"Has the SEC ruled on ETF approvals this week?"*
* *"Any updates on the Base ecosystem?"*

## What It Does

The `web_search` tool runs a live search and returns headlines with linked sources. Archer then summarizes the results in plain English in your thread, with the citations preserved so you can drill into anything that matters.

## When Archer Uses Web Search vs Stored Knowledge

* **Web search**: news, current prices in narrative form (e.g., *"is BTC up today?"*), regulatory developments, recent launches, anything time-sensitive
* **Stored knowledge**: how a protocol works in general, what an AMM is, the difference between L1 and L2, how to think about slippage

The agent decides based on the query. You don't have to ask explicitly.

## Sample Output Structure

```json
{
  "status": "OK",
  "query": "latest crypto regulation news",
  "results": [
    {
      "title": "SEC Approves Spot Solana ETF",
      "url": "https://...",
      "snippet": "The U.S. Securities and Exchange Commission approved...",
      "publishedAt": "2026-04-27T18:30:00Z",
      "source": "Reuters"
    },
    {
      "title": "...",
      "url": "...",
      "snippet": "...",
      "publishedAt": "2026-04-27T14:15:00Z",
      "source": "CoinDesk"
    }
  ]
}
```

## What Web Search Doesn't Do

* It doesn't open URLs and read full articles end-to-end. It works from headlines, snippets, and search-result summaries
* It doesn't trade on news. Archer never auto-executes based on a search result. You always drive the action.
* It doesn't give financial advice. Search results are summarized as information, not recommendations.
* It doesn't always provide perfect responses. Therefore, Web Search will eventually be deprecated in favor of agents that are more dedicated to optimized news retrieval.
