Install
openclaw skills install serper-web-searchPerforms Google web searches using the Serper API and returns structured search results when provided a valid Serper API key.
openclaw skills install serper-web-searchUse Serper API for Google search results.
https://google.serper.dev/searchX-API-Key: $SERPER_API_KEY, Content-Type: application/json{"q": "your query here"}SERPER_API_KEY="your-key" curl -s -X POST "https://google.serper.dev/search" \
-H "X-API-Key: $SERPER_API_KEY" \
-H "Content-Type: application/json" \
-d '{"q": "your query"}'
curl -s -X POST "https://google.serper.dev/search" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"q": "your query"}'
Use the bundled search script:
./scripts/search "your query"
Returns JSON with:
organic[] - Search results (title, link, snippet)searchParameters.q - Original querycredits - Credits usedExample result:
{
"searchParameters": {"q": "test", "type": "search"},
"organic": [
{"title": "Result Title", "link": "https://...", "snippet": "Description...", "position": 1}
],
"credits": 1
}
SERPER_API_KEY environment variable or pass the key inline