# BizIntel API – Play Store App Lookup

> BizIntel API – Play Store App Lookup is a paid API for AI agents from bizintel-api.hahavoid0.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Retrieves Google Play Store app metadata including rating and availability for a given app, returning a structured result with confidence level and data freshness.

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/product/play-store
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bizintel-api-play-store-app-lookup-e278ef6e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QVMe-q0SOWBQFyx0n5RRP

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 bizintel-api-play-store-app-lookup-e278ef6e -d '<json body>'
```

Example prompt: What's the Google Play Store rating for 'Spotify' — is it found on the Play Store and how confident are you in the data?

## When to prefer this

Use this endpoint when you need to programmatically check Google Play Store app ratings or availability without scraping, especially in agentic workflows that require structured app metadata with confidence scoring. Prefer this over manual lookup or web scraping when you need machine-readable, consistently formatted results at low cost ($0.001 per call) with no API key setup.

## Known failure modes

- App not found on Play Store — returns found: false
- Unknown or unsupported app identifier — supported: false
- Low confidence result due to stale or ambiguous data
- Payment failure over x402/USDC before the call is processed
- Network or worker timeout from Cloudflare edge

## How this service works

Parses rating and review metrics for an Android package ID on the Google Play Store.

## Output

Returns a JSON object indicating whether the app was found on the Play Store, its rating (e.g. 4.3), whether the app is supported, a confidence level (e.g. 'high'), the data freshness date (e.g. '2026-06'), and a disclaimer. Also includes any warnings.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "package_id"
     ],
     "properties": {
      "package_id": {
       "type": "string",
       "description": "Android app identifier (e.g. com.instagram.android)"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "found": true,
   "rating": 4.3
  },
  "warnings": [],
  "supported": true,
  "confidence": "high",
  "data_as_of": "2026-06",
  "disclaimer": "Informational support only. Not legal, tax, medical, veterinary, or financial advice. Verify with the cited official source or a qualified professional before acting."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bizintel-api-play-store-app-lookup-e278ef6e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bizintel-api.hahavoid0.workers.dev](https://www.zero.xyz/host/bizintel-api.hahavoid0.workers.dev/llms.txt)
