Overview
- Skill Key
- downdawn/serpshot
- Author
- downdawn
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/downdawn/serpshot
- Latest Commit SHA
- d35794a7db7504ae906ae08e10d63bcc7a73c685
Use Serpshot Google Search API to perform web searches and image searches. Use when user needs to search Google for information, research topics, or get search results. Supports up to 100 queries per request, various locations and languages.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 serpshot 技能。 若已安装,则直接安装 serpshot 技能。
# Skill: Serpshot Google Search API
Perform Google searches using Serpshot API.
## When to Use
- User asks to "search", "google", "查一下", "调研" something
- Need to get web search results for a topic
- Need image search results
## Tools
- `exec` - Run Python to call Serpshot API
## How to Use
### Basic Search
```python
import requests
import json
import os
# Get API key - YOU MUST ASK USER FOR API KEY
api_key = os.environ.get("SERPSHOT_API_KEY", "YOUR_API_KEY")
url = "https://api.serpshot.com/api/search/google"
headers = {
"X-API-Key": api_key,
"Content-Type": "application/json"
}
payload = {
"queries": ["your search query here"],
"type": "search", # or "image"
"num": 10, # results per page (1-100)
"page": 1,
"location": "US", # US, CN, JP, GB, DE, etc.
"lr": "en", # language restriction
"gl": "us" # geolocation
}
response = requests.post(url, headers=headers, json=payload)
data = response.json()
# Parse results
for result in data.get("data", {}).get("results", []):
print(f"{result['position']}. {result['title']}")
print(f" {result['link']}")
print(f" {result['snippet']}")
print()
```
### Parameters
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| queries | array[string] | Yes | Search queries (max 100) |
| type | string | No | "search" or "image", default: "search" |
| num | integer | No | Results per page (1-100), default: 10 |
| page | integer | No | Page number, default: 1 |
| location | string | No | Country code (US, CN, JP, GB, DE, etc.), default: US |
| lr | string | No | Language restriction (en, zh-Hans, etc.), default: en |
| gl | string | No | Geolocation (us, cn, etc.), default: us |
### Response Format
```json
{
"code": 200,
"msg": "Success",
"data": {
"results": [
{
"title": "Result Title",
"link": "https://example.com",
"snippet": "Result description...",
"position": 1
}...
youmind-openlab
AI skill for OpenClaw & Claude Code — recommend from 10000+ Nano Banana Pro (Gemini) image prompts. Smart search by use case, content remix, sample images.
23blocks-os
AI Agent Orchestrator with Skills System - Give AI Agents superpowers: memory search, code graph queries, agent-to-agent messaging. Manage Claude, Codex or any AI Agent from one dashboard. Move Agents between computers and locations
hashgraph-online
AI agent skills for the Universal Registry - search, chat, and register 72,000+ agents across 14+ protocols. Works with Claude, Codex, Cursor, OpenClaw, and any AI assistant.
rito-w
A cross-platform skills manager for AI IDEs. Search marketplace, download locally, and install to Claude, Cursor, Windsurf, and more with one click.
besoeasy
Battle-tested skill library for AI agents. Save 98% of API costs with ready-to-use code for crypto, PDFs, search, web scraping & more. No trial-and-error, no expensive APIs.
zeropointrepo
YouTube Transcript API skills for AI agents. Get transcripts, search videos, browse channels. Works with OpenClaw, ClawdBot, Claude Code, Cursor, Windsurf.