# Google Play Store Top Grossing Apps

> Google Play Store Top Grossing Apps 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 Android apps from the Google Play Store, optionally filtered by category, region, and language.

## Facts

- Endpoint: GET https://openwebninja-x402.vercel.app/api/play-store-apps/top-grossing-apps
- 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-apps-aa4785e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v5E2MZo9Ga0Aur1mF1Efa

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-apps-aa4785e3
```

Example prompt: Can you pull the top 25 grossing Android apps on the Google Play Store in the US right now, filtered to the Games category?

## When to prefer this

Use this endpoint when you need current revenue-ranked app data from the Google Play Store, particularly for market research, competitive analysis, or identifying monetization trends in specific categories or regions. Prefer this over general search endpoints when you specifically need top-grossing rankings rather than search results or app details.

## Known failure modes

- Invalid region code returns an error or empty result
- Unsupported category string returns no results
- Limit out of range (below 1 or above 100) causes a validation error
- Network or upstream Play Store scraping failure returns a 5xx error
- Invalid language code may return results in default language or error

## How this service works

Fetch Google Play Store top grossing apps.

## Output

Returns a ranked list of top grossing apps from the Google Play Store, including app names, IDs, developers, ratings, and category metadata, filtered by the specified region, category, language, and limit.

## 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-apps-aa4785e3/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)
