google-play

google-play is a skill for Claude Code from fetcher-sh/fetcher-skills. It costs 131 tokens per session (1,409 once invoked), scanned A, original, MIT.

An HTTP service for retrieving Google Play Store app data as JSON. Google Play is Google's marketplace for Android apps.

In plain words
What is it for?
Use it to search apps with price and country filters, fetch app details, read reviews, inspect permissions and data-safety information, and browse developer catalogs.
Why use it?
It avoids needing Play Console access or a developer account and avoids scraping storefront pages.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument.

Part of the fetcher-skills plugin — 13 skills, 4 commands shipped together

Good fit Use it to search apps with price and country filters, fetch app details, read reviews, inspect permissions and data-safety information, and browse developer catalogs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/fetcher-sh/fetcher-skills/google-play
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add fetcher-sh/fetcher-skills --skill google-play
Clone the repo
git clone --depth 1 https://github.com/fetcher-sh/fetcher-skills

Made for: Claude Code.

Or install fetcher-skills, the plugin that ships this one along with the rest of its 13 skills, 4 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for google-play

README.md
[![agentmods](https://agentmods.dev/badge/skills/fetcher-sh/fetcher-skills/google-play/github.svg)](https://agentmods.dev/skills/fetcher-sh/fetcher-skills/google-play)
Your own site
<a href="https://agentmods.dev/skills/fetcher-sh/fetcher-skills/google-play"><img src="https://agentmods.dev/badge/skills/fetcher-sh/fetcher-skills/google-play/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for google-play

Your own site · 80×15
<a href="https://agentmods.dev/skills/fetcher-sh/fetcher-skills/google-play"><img src="https://agentmods.dev/badge/skills/fetcher-sh/fetcher-skills/google-play.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 131 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,409 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 14 Aug 2026
  • Snyk warn 14 Aug 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00131 $0.01409
Opus 5 $0.00066 $0.00705
Sonnet 5 $0.00026 $0.00282
Haiku 4.5 $0.00013 $0.00141

Measured 10d ago against content hash cdbd8dc262f7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

google-play scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -H "Authorization: Bearer $FETCHER_API_KEY" \
skills/google-play/SKILL.md · 157 lines

How it starts

The opening of the file, as written. The whole thing — 157 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Google Play API

Google Play Store app search, details, reviews, permissions, data safety, and developer catalogs — one plain HTTP GET per call, paid as you go. No Play Console access, no developer account, no scraping the storefront HTML.

Base URL: https://googleplay.fetcher.sh

Authentication

Two ways to pay, same data — full mechanics in the fetcher skill:

# 1. Prepaid credits (recommended — get a key at https://fetcher.sh/topup
#    or via POST /api/credits/topup, see the fetcher skill)
export FETCHER_API_KEY="bby_live_xxxxxxxxxxxx"
curl -H "Authorization: Bearer $FETCHER_API_KEY" \
  "https://googleplay.fetcher.sh/api/apps?search=meditation"

# 2. x402 pay-per-call — omit the header; a GET with no payment returns 402
#    with machine-readable payment requirements (USDC on Base, Polygon,
#    Arbitrum, Monad, or Solana). @x402/fetch signs and retries automatically.

Every response is { "status": number, "message": string, "data": ... }; the HTTP status mirrors status.

Endpoints (7 — all GET, $0.003/call)

Endpoint What it returns
/api/apps Apps matching a keyword; price and country filters
/api/apps/{appId} An app's full details
/api/apps/{appId}/reviews An app's reviews
/api/apps/{appId}/similar Apps similar to a given app
/api/apps/{appId}/permissions An app's requested permissions
/api/apps/{appId}/datasafety An app's data safety disclosure
/api/developers/{developerId} A developer's full app catalog

Required on search: search. Optional: price (all, free, paid), country, lang. Reviews require country; optional sort (NEWEST, RATING, HELPFULNESS).

Scenarios

Free apps only:

curl -H "Authorization: Bearer $FETCHER_API_KEY" \
  --data-urlencode "search=meditation" -G \
  --data-urlencode "price=free" \
  "https://googleplay.fetcher.sh/api/apps"

Paid apps, German storefront:

curl -H "Authorization: Bearer $FETCHER_API_KEY" \
  --data-urlencode "search=photo editor" -G \
  --data-urlencode "price=paid" \
  --data-urlencode "country=de" \
  "https://googleplay.fetcher.sh/api/apps"

Read the full file on GitHub · 157 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 157 lines · 131 tokens per session scan A cdbd8dc262f7

Subscribe to this mod's changes

google-play is a skill published in the GitHub repository fetcher-sh/fetcher-skills (1 stars, last pushed 5d ago), licensed MIT. It adds 131 tokens to every session and 1,409 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-01.

Related

Other skills, from other repositories

app-rejection-recovery

When the user's app or update was rejected by Apple App Review or Google Play Review and they need to diagnose why, fix it, and resubmit fast. Use when the user mentions "app rejected", "App Review rejection", "guideline violation", "Apple rejected my app", "Google Play rejected", "Play policy violation", "Resolution…

Eronred/aso-skills · 168 tokens

apple-search-ads

When the user wants to set up, optimize, or scale Apple Search Ads (ASA) campaigns — including keyword bidding, match types, campaign structure, Creative Product Sets, CPP routing, and ROAS optimization. Use when the user mentions "Apple Search Ads", "ASA", "Search Ads", "Search tab ads", "Today tab ads", "CPT"…

Eronred/aso-skills · 127 tokens

attribution-setup

When the user wants to set up, debug, or interpret app install attribution — including SKAdNetwork (SKAN), Apple's AdAttributionKit, Google Play Install Referrer, MMPs (AppsFlyer, Adjust, Singular, Branch, Kochava), deep links, deferred deep links, conversion values, postback windows, or privacy thresholds. Use when…

Eronred/aso-skills · 201 tokens

web-to-app-funnel

When the user wants to design or optimize the funnel that takes web visitors into installing and onboarding the app — including smart app banners, web-to-app deep links, deferred deep links, web onboarding (Stripe-paid web flow before app install), QR codes, "open in app" CTAs, and the trade-off between paying on web…

Eronred/aso-skills · 183 tokens

android-aso

When the user wants to optimize their Google Play Store listing — title, short description, full description, keywords, ratings, or Play Store-specific features. Use when the user mentions "Google Play", "Android", "Play Store", "Play Console", "short description", "full description indexed", "Google Play ASO", or…

Eronred/aso-skills · 98 tokens

app-clips

When the user wants to implement, optimize, or use App Clips for app discovery and conversion. Use when the user mentions "App Clip", "app clip code", "mini app", "instant app", "App Clip card", "App Clip link", "no download required", "instant experience", or wants to understand how App Clips appear in App Store…

Eronred/aso-skills · 98 tokens