# Google Play Store App Search

> Google Play Store App Search 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).

Search the Google Play Store for apps by keyword, with optional region and language filters.

## Facts

- Endpoint: GET https://stableninja.dev/api/play-store-apps/search
- 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-419749f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Nub_CUH-Diqbi7HLJleZb

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-419749f3
```

Example prompt: Search the Google Play Store for apps related to 'meditation' in the US region and return me a list of relevant results.

## When to prefer this

Use this endpoint when you need to search for Android apps on Google Play by keyword, especially when regional or language filtering is needed. Prefer this over manually scraping the Play Store or using general web search when structured app metadata is required.

## Known failure modes

- Missing required 'q' parameter returns validation error
- Invalid or unsupported region/language code may return empty results or error
- No matching apps for obscure keyword returns empty result set
- Pagination cursor mismatch or expiry may cause missing results
- Rate limiting or payment failure returns 402 or 429 error

## How this service works

Search Google Play Store apps by keyword.

## Output

A list of Google Play Store app listings matching the keyword, including app names, identifiers, and metadata, paginated via cursor.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "q": "artificial intelligence",
   "region": "US",
   "language": "en"
  }
 }
}
```

## Request schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stableninja-dev-419749f3/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)
