# Google Play Store Top Free Games

> Google Play Store Top Free 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-14).

Fetches the current list of top free games from the Google Play Store, optionally filtered by region, language, category, and result limit.

## Facts

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

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-free-games-039e4754
```

Example prompt: Can you pull the top 20 free games on the Google Play Store in the US right now, filtered to the puzzle category?

## When to prefer this

Use this endpoint when you need a real-time ranked list of top free games specifically from the Google Play Store, with optional filtering by region, language, and game category. Prefer this over generic app search endpoints when you want chart-position data for free games rather than searching by keyword or fetching a specific app's details.

## Known failure modes

- Invalid region code returns an error or empty results
- Unsupported category string yields no results
- Limit value outside 1–100 range is rejected by schema validation
- Rate limiting or upstream Google Play data unavailability causes a failed response
- Missing required method/type fields in request body returns a 400 error

## How this service works

Fetch Google Play Store top free games.

## Output

A ranked list of top free games from the Google Play Store, including app names and relevant Play Store metadata, scoped to the specified region, language, category, and result count.

## 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-free-games-039e4754/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)
