# OpenWebNinja Google Play Store App Details

> OpenWebNinja Google Play Store App Details 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 detailed metadata for an Android app from the Google Play Store by app ID, with optional region and language filtering.

## Facts

- Endpoint: GET https://openwebninja-x402.vercel.app/api/play-store-apps/app-details
- 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/openwebninja-google-play-store-app-details-51dcdc9f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qrmmcol7h5kNKf_aXvq77

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 openwebninja-google-play-store-app-details-51dcdc9f
```

Example prompt: Can you pull up the full Google Play Store details for the app with package ID 'com.spotify.music', including its rating, description, and developer info?

## When to prefer this

Use this endpoint when you need structured metadata for a specific Android app on the Google Play Store and have its package name (app_id). Prefer this over general web scraping when you need reliable, structured data including ratings, install counts, developer info, and app descriptions. Especially useful for app research, competitive intelligence, or enriching mobile app datasets.

## Known failure modes

- Invalid or non-existent app_id returns an error or empty result
- Unsupported region or language code returns an error
- App not available in the specified region returns no result
- Rate limiting or payment failure results in a 402 response
- Malformed app_id (too short or wrong format) fails validation

## How this service works

Fetch Google Play Store details for an Android app.

## Output

Returns structured metadata for the specified Android app from the Google Play Store, including app name, developer, description, rating, number of reviews, install count, price, category, version, and other listing details — optionally localized by region and language.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "app_id": "com.spotify.music",
   "region": "US",
   "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",
     "required": [
      "app_id"
     ],
     "properties": {
      "app_id": {
       "type": "string",
       "minLength": 1
      },
      "region": {
       "type": "string",
       "maxLength": 8,
       "minLength": 2
      },
      "language": {
       "type": "string",
       "maxLength": 16,
       "minLength": 2
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/openwebninja-google-play-store-app-details-51dcdc9f/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)
