# Apple App Store Product Details (Path Variant)

> Apple App Store Product Details (Path Variant) is a paid API for AI agents from appstore.use.x402atlas.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns a full App Store profile for a single iOS app by numeric product_id in the URL path, including rating, price, description, version history, screenshots, and metadata as clean JSON.

## Facts

- Endpoint: GET https://appstore.use.x402atlas.com/v2/product/:product_id
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apple-app-store-product-details-path-variant-5f754c0a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4z4FjMGg7fMhi8OjIUTt-

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 apple-app-store-product-details-path-variant-5f754c0a
```

Example prompt: Can you pull the full App Store profile for app ID 389801252 — I need the current rating, price, description, version history, and any screenshots from the US store.

## When to prefer this

Use this endpoint when you already have a numeric App Store product_id (e.g. from a search result) and need the full structured profile of an app — rating, price, description, version history, screenshots, and developer metadata — in a single clean JSON response. Prefer this path-variant form when your integration makes URL-based product IDs more natural than query parameters. Choose this over a generic web scraper when you need reliably structured, machine-readable output without parsing HTML.

## Known failure modes

- Non-numeric or invalid product_id returns a note field instead of product data, while still charging the fee
- App not available in the specified country returns empty or partial product data
- Passing an ID from a non-iOS app (e.g. Mac App Store) may yield no match
- Rate limiting or upstream App Store unavailability may cause delayed or failed responses
- Malformed country code parameter may fall back to a default store or return an error

## How this service works

Apple App Store product details (path variant) — full profile for a single app by product_id in the URL: rating, price, description, version history, screenshots & metadata as clean JSON.

## Output

Returns a JSON object containing the app's numeric ID, title, logo URL, price string, rating (number), rating count, snippet, full description, developer name/ID/link, age rating, category, size, seller, copyright, iphone and ipad screenshot URLs, and an array of version history entries each with version number, release date, and release notes. Also includes a queried_at timestamp. If no app matches the product_id, a note field is returned explaining that the ID must be a numeric App Store ID.

## 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",
    "pathParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "product_id"
     ],
     "properties": {
      "product_id": {
       "type": "string",
       "pattern": "^[0-9]+$",
       "maxLength": 32,
       "description": "Numeric App Store app id (from /appstore/search)"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "country": {
       "type": "string",
       "maxLength": 2,
       "description": "Optional two-letter store country (e.g. us, gb)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "queried_at",
      "product"
     ],
     "properties": {
      "note": {
       "type": "string",
       "description": "Present only when no app matched: a hint that product_id must be a numeric App Store id. The paid lookup still ran."
      },
      "product": {
       "type": "object",
       "properties": {
        "id": {
         "type": "string"
        },
        "logo": {
         "type": "string"
        },
        "price": {
         "type": "string"
        },
        "title": {
         "type": "string"
        },
        "rating": {
         "type": "number"
        },
        "snippet": {
         "type": "string"
        },
        "developer": {
         "type": "object",
         "properties": {
          "id": {
           "type": "integer"
          },
          "link": {
           "type": "string"
          },
          "name": {
           "type": "string"
          }
         }
        },
        "age_rating": {
         "type": "string"
        },
        "description": {
         "type": "string"
        },
        "information": {
         "type": "object",
         "properties": {
          "size": {
           "type": "string"
          },
          "seller": {
           "type": "string"
          },
          "category": {
           "type": "string"
          },
          "copyright
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apple-app-store-product-details-path-variant-5f754c0a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from appstore.use.x402atlas.com](https://www.zero.xyz/host/appstore.use.x402atlas.com/llms.txt)
