openclaudia/openclaudia-skills

google-reviews

Fetch Google review ratings and review counts for businesses via DataForSEO API. Use when the user asks to check Google reviews, get review counts, compare business ratings, audit Google Maps presence, or analyze competitor reviews.

First seen Mar 25, 2026

Installation

$ npx skills add openclaudia/openclaudia-skills --skill google-reviews

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from openclaudia/openclaudia-skills · top by installs.

npx skills add openclaudia/openclaudia-skills

Browse all from openclaudia/openclaudia-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 682
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,284 B
  • docs SUMMARY.md 1,183 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 325 installs

SKILL.md

Google Reviews

Fetch Google Maps ratings, review counts, and rating distributions for any business using the DataForSEO API.

When to Use This Skill

Use this skill when the user:

  • Asks to check Google reviews for a business
  • Wants to compare ratings across multiple businesses
  • Needs Google review counts for a report or analysis
  • Asks about a business's Google Maps presence
  • Wants to audit competitor reviews

Tool Location

Global tools directory: ~/.agents/tools/

  • Script: ~/.agents/tools/fetch-google-reviews.js
  • Credentials (preferred): AISAONEAPI_KEY in environment variables — proxies through aisa.one
  • Credentials (fallback): DATAFORSEOLOGIN and DATAFORSEOPASSWORD in environment variables — direct to DataForSEO. The script auto-detects which one is set.

Usage

Single Business

cd ~/.agents/tools && node fetch-google-reviews.js "Business Name" "City,Province,Country"

Example:

cd ~/.agents/tools && node fetch-google-reviews.js "Trust Auto Sales" "Richmond,British Columbia,Canada"

Batch Mode

Create a JSON file with an array of businesses, then run:

cd ~/.agents/tools && node fetch-google-reviews.js --batch /path/to/businesses.json

JSON file format:

[
  {"keyword": "Business One", "location": "Vancouver,British Columbia,Canada"},
  {"keyword": "Business Two"}
]
  • keyword (required): Business name to search
  • location (optional): Defaults to "Richmond,British Columbia,Canada"

Output

Single Business (JSON)

{
  "keyword": "Trust Auto Sales",
  "title": "Trust Auto Sales",
  "rating": 4.2,
  "reviews": 677,
  "rating_distribution": {"1": 117, "2": 7, "3": 3, "4": 19, "5": 531},
  "address": "3691 Number 3 Rd, Richmond, BC V6X 2B8",
  "category": "Car dealer",
  "url": "https://trustauto.ca/"
}

Batch Mode

Prints a markdown table followed by full JSON:

| Business | Rating | Reviews | Address |
|----------|--------|---------|---------|
| Trust Auto Sales | 4.2 | 677 | 3691 Number 3 Rd, Richmond, BC V6X 2B8 |

Location Format

Use the DataForSEO location format: City,Province/State,Country

Examples:

  • Richmond,British Columbia,Canada
  • Vancouver,British Columbia,Canada
  • Toronto,Ontario,Canada
  • New York,New York,United States

API Details

  • Uses DataForSEO businessdata/google/mybusiness_info/live endpoint
  • Routes through aisa.one proxy (api.aisa.one/apis/v1/dataforseo/..., Bearer auth) when AISAONEAPI_KEY is set; falls back to direct api.dataforseo.com/v3/... (Basic auth) otherwise
  • Synchronous (returns results immediately)
  • Returns first matching business for the keyword + location
  • Batch mode adds 200ms delay between requests to avoid rate limits

Important Notes

  • If npm install hasn't been run yet: cd ~/.agents/tools && npm install
  • The script loads credentials from both local .env and environment variables
  • DataForSEO charges per API call -- be mindful with large batches