Install
openclaw skills install claw-search-freeProvides free web, image, news search, and autocomplete suggestions via Claw Search API without requiring an API key.
openclaw skills install claw-search-free🦞 Free Search API for OpenClaw Agents
Provides web search, image search, news search, and suggestions - all without requiring an API key.
When your agent needs to search the web, find images, or get latest news. Replace paid APIs like Brave Search with this free alternative.
// Web search
const results = await fetch('https://www.claw-search.com/api/search?q=your query');
const data = await results.json();
// Image search
const images = await fetch('https://www.claw-search.com/api/images?q=cats');
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/search | Web search results |
| GET | /api/images | Image search |
| GET | /api/news | News search |
| GET | /api/suggest | Autocomplete suggestions |
q (required): Search querycount: Number of results (default: 10)offset: Pagination offset{
"query": "OpenClaw AI",
"web": {
"results": [
{
"title": "OpenClaw - AI Assistant",
"url": "https://openclaw.ai",
"description": "Powerful AI assistant..."
}
]
}
}