# Google Play Store Top Paid Apps

> Google Play Store Top Paid 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 paid Android apps from the Google Play Store, filterable by region, category, and language.

## Facts

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

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-apps-186c1ad0
```

Example prompt: Can you pull the top 50 paid Android apps on the Google Play Store right now in the US, specifically in the games category?

## When to prefer this

Use this endpoint when you need a current ranked list of top paid Android apps from Google Play, especially when filtering by country/region, app category, or language. Prefer this over scraping Play Store directly or using general app analytics tools when you need a simple, low-cost, on-demand chart snapshot.

## Known failure modes

- Invalid region code returns a 400 or empty result
- Unsupported category string returns no results
- Limit value outside 1-100 range is rejected
- Payment of $0.01 USDC not provided results in 402 Payment Required
- Play Store data temporarily unavailable results in 5xx error
- Invalid language code returns error or defaults to English

## How this service works

Fetch Google Play Store top paid apps.

## Output

Returns a ranked list of top paid Android apps from Google Play Store, including app names, rankings, and associated metadata, filtered by the specified region, category, language, and result limit.

## Example request

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

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