# Google Play Store Top Paid Games

> Google Play Store Top Paid 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 paid games currently on the Google Play Store, filterable by region, category, and language.

## Facts

- Endpoint: GET https://openwebninja-x402.vercel.app/api/play-store-apps/top-paid-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-paid-games-474a6e57
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_t8VgYNtg6LmARLKd-OBJt

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-paid-games-474a6e57
```

Example prompt: What are the top 20 paid games on the Google Play Store in the US right now? Show me results in English.

## When to prefer this

Use this endpoint when you need a current ranked list of top paid games specifically from the Google Play Store (Android), with the ability to filter by region, language, or game sub-category. Prefer this over the 'top free games' endpoint when the user explicitly wants paid/premium games. Prefer this over 'top paid apps' when the user is specifically interested in games rather than all app types.

## Known failure modes

- Invalid region code returns an error or empty result
- Unsupported language code may return no results or a 400 error
- Limit value outside 1–100 range causes a validation error
- Category string not matching a valid Play Store category returns empty or error
- Service unavailable if upstream Google Play data is unreachable

## How this service works

Fetch Google Play Store top paid games.

## Output

A ranked list of the top paid games on the Google Play Store, including game titles, rankings, and associated metadata such as category, price, and region. Results can be scoped by region (e.g. 'US'), language, category (e.g. 'GAME_PUZZLE'), and limited to up to 100 entries.

## 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-paid-games-474a6e57/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)
