Real-time Google and Bing search results with structured JSON output. Use this skill whenever the user asks to search the web, find recent news, look up something on Google or Bing, get Google AI Overviews, check Google Trends, find events, or look up images. Triggers on "search Google for", "Bing search", "find news about", "what's trending", "Google AI Overview for", "find events in", "image search". Returns clean structured JSON — organic results, ads, knowledge graph, related searches — without any HTML scraping. Use this instead of WebSearch when the user wants raw search-engine data, time-filtered results, or location-specific SERPs.
التثبيت
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Real-time Google and Bing search results with structured JSON output. Use this skill whenever the user asks to search the web, find recent news, look up something on Google or Bing, get Google AI Overviews, check Google Trends, find events, or look up images. Triggers on "search Google for", "Bing search", "find news about", "what's trending", "Google AI Overview for", "find events in", "image search". Returns clean structured JSON — organic results, ads, knowledge graph, related searches — without any HTML scraping. Use this instead of WebSearch when the user wants raw search-engine data, time-filtered results, or location-specific SERPs.
allowed-tools
["Bash(hasdata *)"]
hasdata search APIs
Structured JSON results from Google, Bing, Google News, Google AI Mode, Trends, Events, Images, and short videos.
When to use
The user wants raw search-engine results (not just an answer)
They need news from a specific time window (--tbs qdr:d|w|m|y)
They need location- or device-specific SERPs (--location, --gl, --device-type)
They want Google AI Overviews, Trends data, image results, or events
They need to fan out from search results into other APIs (e.g., search → scrape each result)
APIs in this group
Command
Purpose
Cost
google-serp
Full Google SERP (organic, ads, KG, related)
10
google-serp-light
Lighter / faster Google SERP
5
google-news
Google News results
10
google-ai-mode
Google AI Overview (AI-generated answer)
5
google-trends
Google Trends interest data
5
google-events
Google Events listings
5
google-images
Google Images results
5
google-short-videos
Google short videos (Shorts/TikToks/Reels)
5
bing-serp
Full Bing SERP
10
Quick start
# Google SERP, US English, 20 results
hasdata google-serp --q "best wireless earbuds 2026" --num 20 --pretty -o .hasdata/serp-earbuds.json
# News from the past day, sorted by date
hasdata google-news --q "openai" --pretty -o .hasdata/news-openai.json
# Google AI Overview
hasdata google-ai-mode --q "what is retrieval augmented generation" --pretty -o .hasdata/ai-rag.json
# Time-filtered SERP (past week)
hasdata google-serp --q "claude code release" --tbs "qdr:w" --pretty -o .hasdata/serp-cc-week.json
# Location-targeted SERP
hasdata google-serp --q "coffee near me" --location "Brooklyn,New York,United States" --pretty -o .hasdata/serp-coffee-bk.json
# Bing SERP
hasdata bing-serp --q "openai api pricing" --pretty -o .hasdata/bing-openai.json
# Google Trends
hasdata google-trends --q "claude code" --pretty -o .hasdata/trends-cc.json
# Events near a city
hasdata google-events --q "tech meetups" --location "San Francisco,California,United States" --pretty -o .hasdata/events-sf.json
# Image search
hasdata google-images --q "minimalist desk setup" --pretty -o .hasdata/images-desk.json