# Google Play Store Top Grossing Games

> Google Play Store Top Grossing Games is a paid API for AI agents from openwebninja-x402.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches a ranked list of the top grossing games on the Google Play Store, filterable by region, language, and category.

## Facts

- Endpoint: GET https://openwebninja-x402.vercel.app/api/play-store-apps/top-grossing-games
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/google-play-store-top-grossing-games-157932f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_73a3QU--FScz8RMnRnywf

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability google-play-store-top-grossing-games-157932f3
```

Example prompt: What are the top 20 grossing Android games on the Google Play Store in the US right now, specifically in the RPG category?

## When to prefer this

Use this endpoint when you need current top grossing game rankings from the Google Play Store, especially when you need regional or category-specific filtering. Prefer this over general app search endpoints when the goal is market research, competitive analysis, or discovering which mobile games are currently generating the most revenue on Android.

## Known failure modes

- Invalid region code returns 400 or empty results
- Invalid or unsupported category string returns no results
- Limit value outside 1-100 range is rejected by schema validation
- Language code too short or too long fails validation
- Payment not fulfilled results in 402 Payment Required
- Service unavailable or Play Store scraping blocked returns 5xx error

## How this service works

Fetch Google Play Store top grossing games.

## Output

A ranked list of top grossing games from the Google Play Store, including game titles, rankings, and relevant metadata such as app IDs, categories, and revenue positioning. Results can be filtered by region, language, category, and limited to a specified count up to 100.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1
      },
      "region": {
       "type": "string",
       "maxLength": 8,
       "minLength": 2
      },
      "category": {
       "type": "string",
       "minLength": 1
      },
      "language": {
       "type": "string",
       "maxLength": 16,
       "minLength": 2
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/google-play-store-top-grossing-games-157932f3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from openwebninja-x402.vercel.app](https://www.zero.xyz/host/openwebninja-x402.vercel.app/llms.txt)
