> For the complete documentation index, see [llms.txt](https://docs.unbrowse.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.unbrowse.ai/for-agents/search-on-top.md).

# Search on Top

Search asks the shared route graph for endpoints matching an intent.

```bash
unbrowse search --intent "find stock prices" --domain finance.yahoo.com
```

Or in TypeScript:

```ts
const result = await unbrowse.search({
  intent: "find stock prices",
  domain: "finance.yahoo.com",
  limit: 5,
});
```

Search results are candidates, not fabricated successes. Execute a selected endpoint to obtain data. If search or execution is metered, the service deducts account credits; insufficient balance returns a normal typed error.
