โ† All skills
Tencent SkillHub ยท Developer Tools

SerpAPI

Unified search API across Google, Amazon, Yelp, OpenTable, Walmart, and more. Use when searching for products, local businesses, restaurants, shopping, images, news, or any web search. One API key, many engines.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Unified search API across Google, Amazon, Yelp, OpenTable, Walmart, and more. Use when searching for products, local businesses, restaurants, shopping, images, news, or any web search. One API key, many engines.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/serp.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 13 sections Open source page

SerpAPI - Unified Search

SerpAPI provides structured data from Google, Amazon, Yelp, OpenTable, and 20+ other search engines through a single API.

Setup

Get an API key from https://serpapi.com (free tier: 100 searches/month) Set environment variable: export SERPAPI_API_KEY=your-key-here Optionally set default location in <workspace>/TOOLS.md: ## SerpAPI Default location: Pittsburgh, PA

Usage

# General syntax <skill>/scripts/serp.py <engine> "<query>" [options] # Examples serp.py google "best coffee shops" serp.py google_maps "restaurants near me" --location "15238" serp.py amazon "mechanical keyboard" --num 10 serp.py yelp "pizza" --location "New York, NY" serp.py google_shopping "standing desk"

Engines

EngineUse forKey featuresgoogleGeneral web searchOrganic results, knowledge graph, local packgoogle_mapsLocal places/businessesRatings, reviews, hours, GPS coordinatesgoogle_shoppingProduct searchPrices, merchants, reviewsgoogle_imagesImage searchThumbnails, sourcesgoogle_newsNews articlesHeadlines, sources, datesamazonAmazon productsPrices, ratings, reviews, Prime statusyelpLocal businessesReviews, ratings, categoriesopentableRestaurant reviewsDining reviews, ratingswalmartWalmart productsPrices, availabilityebayeBay listingsPrices, bids, conditionstripadvisorTravel/attractionsHotels, restaurants, things to do

Options

OptionDescription--location, -lLocation for local results (city, zip, address)--num, -nNumber of results (default: 10)--format, -fOutput format: json (default) or text--type, -tGoogle search type: shop, isch, nws, vid--page, -pPage number for pagination--glCountry code (e.g., us, uk, de)--hlLanguage code (e.g., en, es, fr)

When to Use Which Engine

Finding local businesses/restaurants: google_maps โ€” Best for discovering places, hours, reviews yelp โ€” Deep reviews and ratings for restaurants/services opentable โ€” Restaurant-specific, dining reviews Shopping/Products: google_shopping โ€” Compare prices across merchants amazon โ€” Amazon-specific search with Prime info walmart โ€” Walmart inventory and prices ebay โ€” Used items, auctions, collectibles General research: google โ€” Web pages, articles, general info google_news โ€” Current events, news articles google_images โ€” Finding images

Find restaurants near a location

serp.py google_maps "italian restaurants" --location "Pittsburgh, PA" --num 5

Compare product prices

serp.py google_shopping "sony wh-1000xm5" --num 10

Check Amazon reviews and pricing

serp.py amazon "standing desk" --num 10

Get Yelp reviews for local services

serp.py yelp "plumber" --location "15238"

Search news on a topic

serp.py google_news "AI regulation" --num 5

Output Formats

JSON (default): Full structured data from SerpAPI. Best for programmatic use or when you need all details. Text (--format text): Human-readable summary. Best for quick answers.

Integration Notes

Results are structured JSON โ€” parse and extract what you need Local results include GPS coordinates for mapping Shopping results include extracted prices for comparison Knowledge graph provides entity information when available Rate limits: 100/month on free tier, check your plan at serpapi.com/dashboard

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/serp.py Scripts