# BizIntel API – App Store Bundle ID Lookup

> BizIntel API – App Store Bundle ID 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).

Looks up the Apple App Store bundle ID for an iOS or macOS application by its title

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/product/app-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-app-store-bundle-id-lookup-3db85f99
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_va2oy38ki6o6ceOJ1zyEo

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-app-store-bundle-id-lookup-3db85f99 -d '<json body>'
```

Example prompt: What's the App Store bundle ID for Slack? I need the iOS bundle identifier like com.something.appname.

## When to prefer this

Use this endpoint when you need to resolve a human-readable iOS or macOS app name into its official Apple bundle identifier (e.g. com.example.app) without needing an Apple developer account or App Store Connect access. Preferred over manual App Store searches when automating MDM provisioning, deep-link configuration, app auditing, or competitive research pipelines. At $0.01 per call with no API key required, it is suitable for low-volume lookups in agent workflows.

## Known failure modes

- App name not found in App Store index — `found: false` returned
- Ambiguous app name matching multiple apps — lower confidence score returned
- Typo or unofficial app name provided — may return wrong bundle ID or not found
- Service unavailability — HTTP error or timeout
- Payment failure via x402 protocol — request not processed

## How this service works

Searches Apple iOS/macOS applications to resolve price, bundle IDs, and reviews from the official iTunes Search API.

## Output

Returns a JSON object with a boolean `found` flag, the resolved `bundleId` string (e.g. com.tinyspeck.chatlyio), a `confidence` level (e.g. high), a `data_as_of` freshness date, any warnings, and a disclaimer. When found, the bundle ID uniquely identifies the app in the Apple ecosystem.

## 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": [
      "app_name"
     ],
     "properties": {
      "app_name": {
       "type": "string",
       "description": "iOS/macOS application title"
      }
     }
    },
    "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,
   "bundleId": "com.tinyspeck.chatlyio"
  },
  "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-app-store-bundle-id-lookup-3db85f99/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)
