By HasData
Real-time structured data from Google, Amazon, Zillow, Maps, and 40+ other sources — plus generic URL scraping into HTML, markdown, or AI-extracted JSON.
Enrich a person or company with Google search dorks — emails, LinkedIn, GitHub, X (with follower counts), Crunchbase
Build a local lead list of businesses for a category in a city — name, phone, address, website, rating
Compare prices for a product across Amazon and Google Shopping, with optional schedule for monitoring over time
Local business directory data from Yelp and YellowPages — search, full place profiles, ratings, reviews, contact info. Use this skill when the user wants Yelp listings, YellowPages results, restaurant reviews on Yelp, plumbers / contractors / professionals near a city, business phone numbers and addresses, or full Yelp/YellowPages place profiles. Triggers on "Yelp search for", "Yelp reviews for", "find <category> on Yelp", "YellowPages for", "plumbers in <city>", "lawyers near", "lead list of <category>", "phone number for". Returns structured JSON. Use this when the user names Yelp or YellowPages specifically; for Google Maps data use hasdata-maps.
Pull structured data from Google (SERP, Maps, News, Trends, Flights, Images, Events), Bing, Amazon, Shopify, Zillow, Redfin, Airbnb, Yelp, YellowPages, Indeed, Glassdoor, and Instagram — or scrape any URL into HTML, markdown, or AI-extracted JSON — via the HasData CLI. Use this skill whenever the user wants real-time web data: search results, product listings, real-estate comps, vacation rentals, business contact details, job postings, social profiles, flight prices, or page content. Triggers on "search Google for", "scrape this URL", "find products on Amazon", "Zillow listings in", "Yelp reviews for", "jobs on Indeed", "Google Maps for", "flight prices", or any request that needs current data from a public website. 40+ dedicated APIs return ready-to-use structured JSON — use this instead of WebFetch/WebSearch for any task that needs external data, especially when the user names a specific source (Amazon, Maps, Zillow, etc.).
Structured product data from Amazon, Shopify stores, and Google Shopping. Use this skill when the user wants to find products, check prices, get product details, list a Shopify store's catalog, scrape an Amazon seller's products, compare prices across retailers, or pull immersive product data. Triggers on "find products on Amazon", "Amazon search for", "ASIN B0...", "Shopify products from", "this Shopify store", "Google Shopping for", "compare prices for", "what does this seller sell", "Amazon seller", or any e-commerce product / pricing request. Returns structured JSON — title, price, ratings, reviews, images, availability — without HTML scraping.
Real-time flight search via Google Flights — one-way, round-trip, or multi-city, with rich filters (airlines, stops, layover duration, travel class, max price, lower emissions). Use this skill when the user wants flight prices, schedules, or to compare itineraries. Triggers on "flight prices from X to Y", "Google Flights for", "cheapest flights", "round-trip from", "non-stop flights", "business class flights", or any travel-fare research. Returns structured JSON — airlines, prices, durations, stops, carbon emissions — without HTML scraping.
Job listings and details from Indeed and Glassdoor. Use this skill when the user wants to search jobs by keyword and location, get details on a single job posting, build a hiring map for a role, or research roles at a company. Triggers on "find jobs", "Indeed search", "Glassdoor jobs", "<role> jobs in <city>", "open positions for", "job listings", "hiring for", "job posting at <url>", or any salary / company hiring research. Returns structured JSON — title, company, location, salary, posted date, URL — without HTML scraping.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Real-time web data inside Claude Code. Pull structured JSON from Google (SERP, Maps, News, Trends, Flights, Images, Events), Bing, Amazon, Shopify, Zillow, Redfin, Airbnb, Yelp, YellowPages, Indeed, Glassdoor, and Instagram — or scrape any URL into clean HTML, markdown, or AI-extracted fields.
This plugin adds the HasData CLI as a set of skills, so Claude Code can answer questions and produce data that depends on the live web.
40+ APIs return ready-to-use structured JSON — no HTML parsing, no selectors to maintain.
In Claude Code, run /plugin and search for hasdata, then select it to install. Or load it locally during development:
claude --plugin-dir ./hasdata-claude-plugin
The plugin shells out to the hasdata binary. Install it with the official one-liner:
curl -fsSL https://raw.githubusercontent.com/hasdata/cli/main/install.sh | sh
Or download a release for your platform from https://github.com/hasdata/cli/releases.
Get an API key at https://app.hasdata.com/api-keys, then run:
hasdata configure
This stores the key in ~/.hasdata/config.yaml.
You can also export it as an environment variable (add to ~/.zshrc / ~/.bashrc for persistence):
export HASDATA_API_KEY="YOUR-API-KEY"
hasdata version
hasdata google-serp --q "hello world" --pretty
You should see structured search results.
Once installed, Claude Code uses HasData automatically when web data is needed. Just ask naturally:
Search the web:
Search Google for "best practices for React testing" and summarize the recommendations
Scrape a page:
Scrape https://docs.hasdata.com/getting-started and extract the auth steps
Find local businesses:
Get the top 10 pizza places in Brooklyn from Google Maps with phone numbers
Compare products:
Find wireless mice under $50 on Amazon, sorted by rating
Real estate:
List for-sale homes in Austin TX between $500k and $800k, 3+ beds
Jobs:
Find remote Rust engineering jobs on Indeed, then summarize the top 5
Flights:
Cheapest non-stop round trip JFK → LHR for July 10–20
Social:
Pull the Instagram profile for @hasdatadotcom
| Category | CLI commands |
|---|---|
| Search | google-serp, google-serp-light, google-news, google-ai-mode, bing-serp, google-trends, google-events, google-images, google-short-videos |
| Scrape | web-scraping |
| Maps | google-maps, google-maps-place, google-maps-reviews, google-maps-contributor-reviews, google-maps-photos |
| E-commerce | amazon-search, amazon-product, amazon-seller, amazon-seller-products, shopify-products, shopify-collections, google-shopping, google-immersive-product |
| Real estate | zillow-listing, zillow-property, redfin-listing, redfin-property, airbnb-listing, airbnb-property |
| Jobs | indeed-listing, indeed-job, glassdoor-listing, glassdoor-job |
| Business | yelp-search, yelp-place, yellowpages-search, yellowpages-place |
| Social | instagram-profile |
| Flights | google-flights |
Run hasdata --help for the full list, or hasdata <command> --help for per-API flags.
Results are written to a .hasdata/ directory in your project to keep the context window clean:
.hasdata/serp-react_hooks.json
.hasdata/amazon-wireless_mouse.json
.hasdata/maps-pizza-brooklyn.json
.hasdata/zillow-austin-forSale.json
.hasdata/scrape-example.com.md
Add .hasdata/ to your .gitignore:
echo '.hasdata/' >> .gitignore
npx claudepluginhub hasdata/hasdata-claude-plugin --plugin hasdataComprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Intelligent draw.io diagramming plugin with AI-powered diagram generation, multi-platform embedding (GitHub, Confluence, Azure DevOps, Notion, Teams, Harness), conditional formatting, live data binding, and MCP server integration for programmatic diagram creation and management.
Persistent file-based planning for AI coding agents. Crash-proof markdown plans (task_plan.md, findings.md, progress.md) that survive context loss and /clear, with an opt-in completion gate and multi-agent shared state. Manus-style. Works with Claude Code, Codex CLI, Cursor, Kiro, OpenCode and 60+ agents via the SKILL.md standard. Includes Arabic, German, Spanish, and Chinese (Simplified and Traditional).
Complete creative writing suite with 10 specialized agents covering the full writing process: research gathering, character development, story architecture, world-building, dialogue coaching, editing/review, outlining, content strategy, believability auditing, and prose style/voice analysis. Includes genre-specific guides, templates, and quality checklists.
TypeScript/JavaScript full-stack development with NestJS, React, and React Native
Give your AI a memory — mine projects and conversations into a searchable palace. 33 MCP tools, auto-save hooks, and guided setup.