Supported Providers
| Provider | Strengths | Free Tier |
|---|---|---|
| Tavily | AI-native, returns clean content + AI answer | 1,000 req/month |
| Exa | Semantic/neural search, find similar pages | 1,000 req/month |
| Serper | Real Google results, very affordable | 2,500 credits |
Quick Start: Agent with Search
The simplest way to give your agent search capabilities:Programmatic Search
UsewebSearch() directly in your code, workflows, or custom tools:
Response Format
Two Modes: Standalone and Platform
Standalone Mode (API key in code)
Pass the API key directly. No platform connection needed:Platform Mode (credential managed in portal)
Configure the search provider credential in the Runflow portal (Connectors > Search category), then use without an API key:Provider Examples
Tavily (recommended for AI agents)
Exa (semantic search)
Serper (Google results)
Configuration Options
| Parameter | Type | Default | Description |
|---|---|---|---|
provider | 'tavily' | 'exa' | 'serper' | 'tavily' | Search provider |
apiKey | string | — | Provider API key (standalone mode) |
connector | string | — | Connector instance slug (platform mode) |
maxResults | number | 5 | Maximum number of results |
searchDepth | 'basic' | 'advanced' | 'basic' | Search depth (Tavily only) |
includeContent | boolean | false | Include full page content in results |
Using in Workflows
Next Steps
Schedule
Create scheduled executions programmatically
Tools
Create custom tools for agents