@talocode/searchlane
v0.1.3
Published
Agent web search & research API — structured query, news, and multi-source research with citations
Maintainers
Readme
SearchLane
Agent web search & research API — structured hits, news search, and multi-source research briefs with citations.
Part of Talocode. Hosted at /v1/searchlane/*.
Install
npm install @talocode/searchlanepip install talocode-searchlaneSDK
import { SearchLaneClient } from '@talocode/searchlane'
const search = new SearchLaneClient({ apiKey: process.env.TALOCODE_API_KEY })
const hits = await search.query({ query: 'MCP agent tools', limit: 5 })
const brief = await search.research({ query: 'What is llms.txt?' })Cloud SDK
import { Talocode } from '@talocode/sdk'
const tc = new Talocode({ apiKey: process.env.TALOCODE_API_KEY })
await tc.searchlane.query({ query: 'geolane ai visibility' })Python
from searchlane import SearchLaneClient
client = SearchLaneClient() # TALOCODE_API_KEY
hits = client.query(query="MCP agent tools", limit=5)
brief = client.research(query="What is llms.txt?")CLI
npx searchlane query --query "open source AI tools"
npx searchlane news --query "AI agents"
npx searchlane research --query "agent-native APIs"
npx searchlane pricingRoutes
| Method | Path | Credits |
|--------|------|---------|
| GET | /v1/searchlane/health | — |
| GET | /v1/searchlane/pricing | — |
| GET | /v1/searchlane/capabilities | — |
| POST | /v1/searchlane/query | 5 |
| POST | /v1/searchlane/news | 8 |
| POST | /v1/searchlane/research | 30 |
Providers
- Brave — set
BRAVE_API_KEY - Serper — set
SERPER_API_KEY - DuckDuckGo — free fallback
- mock — offline / test fallback
Local server
SEARCHLANE_ALLOW_LOCAL_UNAUTH=true pnpm dev
# http://0.0.0.0:3040Talocode ecosystem
Part of Talocode — open-source workflow layers for builders. Explore sibling projects:
| Project | What it is | |---------|------------| | ScreenLane | Screen-aware voice command layer | | Tera | AI chat & assistant | | Codra | Local coding agent | | GateLane | MCP gateway & agent tool control plane | | ContextLane | Context ingestion for persistent agents | | MemoryLane | Persistent agent memory | | SignalLane | X growth intelligence | | ReplyLane | X reply opportunity intelligence | | CrawlerLane | Crawler / SEO intelligence | | WebDataLane | Web extraction to structured data | | SearchLane | Search layer for agents (this repo) | | InvoiceLane | Invoicing tools | | GeoLane | Geo intelligence | | UgcLane | UGC workflows | | OpenSourceLane | Open-source distribution tools | | StackLane | Builder stack platform | | Tradia | Trading intelligence | | Agent Browser | Browser automation for agents | | Talocode | Org home & control plane | | Skills | Shared agent skills | | X Agent | X automation agent | | LaunchPix | Launch tooling | | ForgeCAD | CAD workflows | | WorkLane | Work automation | | ClipLoop | Clip / video loops |
MCP-compatible agents integrate via each product's MCP server where available (Model Context Protocol).
More: github.com/talocode · talocode.site · docs.talocode.site
License
MIT
