skills$openclaw/serpapi
ericsantos9.2k

by ericsantos

serpapi – OpenClaw Skill

serpapi is an OpenClaw Skills integration for coding workflows. Search Google via SerpAPI (Google Search, Google News, Google Local). Use when you need to search the web, find news articles, or look up local businesses. Supports country/language targeting for region-specific results.

9.2k stars7.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameserpapi
descriptionSearch Google via SerpAPI (Google Search, Google News, Google Local). Use when you need to search the web, find news articles, or look up local businesses. Supports country/language targeting for region-specific results. OpenClaw Skills integration.
ownerericsantos
repositoryericsantos/serpapi-search
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @ericsantos/serpapi-search
last updatedFeb 7, 2026

Maintainer

ericsantos

ericsantos

Maintains serpapi in the OpenClaw Skills directory.

View GitHub profile
File Explorer
5 files
.
scripts
format.py
1.9 KB
search.sh
2.5 KB
_meta.json
284 B
SKILL.md
1.8 KB
SKILL.md

SerpAPI Search

Search Google via SerpAPI with country/language targeting.

Quick start

# Google Search
{baseDir}/scripts/search.sh "artificial intelligence B2B" --country br --lang pt

# Google News
{baseDir}/scripts/search.sh "inteligência artificial" --engine google_news --country br --lang pt

# Google Local
{baseDir}/scripts/search.sh "AI companies" --engine google_local --country us --location "San Francisco, California"

Engines

EngineUse caseKey results field
googleWeb search (default)organic_results
google_newsNews articlesnews_results
google_localLocal businesses/placeslocal_results

Options

FlagDescriptionDefault
--enginegoogle, google_news, google_localgoogle
--country2-letter country code (br, us, de, etc.)us
--langLanguage code (pt, en, es, etc.)en
--locationLocation string (e.g. "São Paulo, Brazil")
--numNumber of results10
--jsonRaw JSON outputoff

API key

Set SERPAPI_API_KEY env var, or store it:

mkdir -p ~/.config/serpapi
echo "your_key_here" > ~/.config/serpapi/api_key
chmod 600 ~/.config/serpapi/api_key

Common country codes

br (Brazil), us (USA), pt (Portugal), de (Germany), fr (France), es (Spain), gb (UK), jp (Japan), in (India).

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install serpapi?

Run openclaw add @ericsantos/serpapi-search in your terminal. This installs serpapi into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/ericsantos/serpapi-search. Review commits and README documentation before installing.