# Get Apple App Store app details by App ID

**Use case:** 

Look up any iOS, iPadOS, or macOS app by App Store ID: title, developer, description, price, ratings, screenshots, in-app purchases, and sample reviews.

## Input

```json
{
  "product_ids": [
    "324684580"
  ],
  "country": "us",
  "include_reviews_sample": true,
  "include_related_apps": false
}
```

## Output

```json
{
  "app_id": {
    "label": "App Store ID",
    "format": "integer"
  },
  "title": {
    "label": "App Title",
    "format": "string"
  },
  "developer_name": {
    "label": "Developer Name",
    "format": "string"
  },
  "rating_average": {
    "label": "Rating Average",
    "format": "number"
  },
  "rating_count": {
    "label": "Rating Count",
    "format": "integer"
  },
  "price_text": {
    "label": "Price",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "link": {
    "label": "App Store URL",
    "format": "string"
  },
  "lookup_country": {
    "label": "Lookup Country",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Apple App Store Product API | Get App Details, Reviews, Pricing](https://apify.com/johnvc/apple-app-store-product-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/apple-app-store-product-api) to learn more, explore other use cases, and run it yourself.