# Apple App Store Product Details by ID

> Apple App Store Product Details by ID 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-15).

Fetches a full product profile for a single iOS app from the Apple App Store by numeric product ID, returning rating, price, description, version history, screenshots, and metadata as JSON.

## Facts

- Endpoint: GET https://appstore.use.x402atlas.com/product
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apple-app-store-product-details-by-id-1460123a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j5SPk9qor9yf7vdPZ9aUX

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-by-id-1460123a
```

Example prompt: Can you pull up the full App Store profile for Duolingo — its current rating, price, description, version history, and screenshots? Its App Store product ID is 570060128 and I want results 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 prior search) and need comprehensive metadata about a single app — rating, price, description, version history, and screenshots — rather than searching by keyword. Prefer this over the search endpoint when the app ID is known, and over the reviews endpoint when you need product-level metadata rather than user review text.

## Known failure modes

- Invalid or non-numeric product_id returns an error or empty result
- App ID not found in the specified country store returns no product data
- Invalid country code causes fallback to default store or error
- Rate limiting or payment failure returns 402 or 429 status
- App has been removed from the App Store and returns no data

## How this service works

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

## Output

A JSON object containing the app's title, logo URL, price, numeric rating, rating count, snippet, full description, developer name and link, age rating, category, size, seller, copyright, iphone and ipad screenshot URLs, and a version history array with release version, date, and notes for each update, along with a queried_at timestamp.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "product_id"
     ],
     "properties": {
      "country": {
       "type": "string",
       "maxLength": 2,
       "description": "Optional two-letter store country (e.g. us, gb)"
      },
      "product_id": {
       "type": "string",
       "pattern": "^[0-9]+$",
       "maxLength": 32,
       "description": "Numeric App Store app id (from /appstore/search)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "queried_at",
      "product"
     ],
     "properties": {
      "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": {
           "type": "string"
          },
          "age_rating": {
           "type": "string"
          }
         }
        },
        "rating_count": {
         "type": "string"
        },
        "version_history": {
         "type": "array",
         "items": {
          "ty
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "product": {
   "id": "1069513131",
   "price": "Free",
   "title": "CARROT Weather: Alerts & Radar",
   "rating": 4.8,
   "developer": {
    "name": "Grailr LLC"
   },
   "age_rating": "12+",
   "rating_count": "51K Ratings"
  },
  "queried_at": "2026-07-11T12:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apple-app-store-product-details-by-id-1460123a/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)
