# Google Play Store Top Grossing Apps

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

Fetches the current top grossing apps from the Google Play Store, filterable by region, category, and language.

## Facts

- Endpoint: GET https://stableninja.dev/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/stableninja-dev-a56fd62d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lnOWKvXfaON2pvsqtPXdk

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 stableninja-dev-a56fd62d
```

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

## When to prefer this

Use this endpoint when you need a real-time ranked list of top grossing Android apps from the Google Play Store, especially when filtering by geographic region, app category, or language. Prefer this over general app search endpoints when you specifically need revenue/grossing rankings rather than keyword-based search results.

## Known failure modes

- Invalid region code returns an error or empty results
- Category not found returns empty list
- Limit out of range (below 1 or above 100) returns validation error
- Network or upstream Play Store data unavailability causes 5xx error
- Unsupported language code may return default or error

## How this service works

Fetch Google Play Store top grossing apps.

## Output

A ranked list of top grossing apps from the Google Play Store, including app names, categories, rankings, and associated metadata, filtered by the specified region, category, language, and result limit.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 25,
   "region": "US",
   "category": "GAME",
   "language": "en"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stableninja-dev-a56fd62d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableninja.dev](https://www.zero.xyz/host/stableninja.dev/llms.txt)
