Install
openclaw skills install tavily-skillUse Tavily API for real-time web search and content extraction. Use when: user needs real-time web search results, research, or current information from the web. Requires Tavily API key.
openclaw skills install tavily-skillUse Tavily API for real-time web search and content extraction.
✅ USE this skill when:
❌ DON'T use this skill when:
web_fetch toolweb_fetch for specific URLsSet your Tavily API key in one of these ways:
export TAVILY_API_KEY="your-api-key-here"
Add to your openclaw.json:
{
"tavily": {
"apiKey": "your-api-key-here"
}
}
# Search for a topic
curl -X POST "https://api.tavily.com/search" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $TAVILY_API_KEY" \
-d '{
"query": "latest AI developments 2026",
"search_depth": "basic",
"max_results": 5
}' | jq .
# Get detailed research results
curl -X POST "https://api.tavily.com/search" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $TAVILY_API_KEY" \
-d '{
"query": "climate change impact on agriculture 2026",
"search_depth": "advanced",
"max_results": 10,
"include_answer": true,
"include_images": false
}' | jq .
# Search for recent news
curl -X POST "https://api.tavily.com/search" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $TAVILY_API_KEY" \
-d '{
"query": "technology news today",
"search_depth": "basic",
"max_results": 5,
"include_raw_content": false
}' | jq .
query: Search query string (required)search_depth: "basic" or "advanced" (default: "basic")max_results: Number of results (1-10, default: 5)include_answer: Include AI-generated answer (true/false)include_images: Include image URLs (true/false)include_raw_content: Include full page content (true/false)echo $TAVILY_API_KEYIf Tavily API is not available:
web_fetch for specific URLsweb_search with Kimi API (if configured)browser tool