<!--
{
  "availability" : [
    "Apple Ads Platform API: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple-Ads-Platform-API",
  "identifier" : "/documentation/Apple-Ads-Platform-API/AppLocaleDetailsQueryResponse",
  "metadataVersion" : "0.1.0",
  "role" : "Object",
  "symbol" : {
    "kind" : "Object",
    "modules" : [
      "Apple Ads Platform API"
    ],
    "preciseIdentifier" : "data:apple-ads-platform-api:AppLocaleDetailsQueryResponse"
  },
  "title" : "AppLocaleDetailsQueryResponse"
}
-->

# AppLocaleDetailsQueryResponse

Paginated response object for app locale detail queries.

```
object AppLocaleDetailsQueryResponse
```

## Discussion

The [`Query App Locale Details`](/documentation/Apple-Ads-Platform-API/Query-Default-Product-Page-Locale-Details-by-Adam-ID) endpoint returns `AppLocaleDetailsQueryResponse` as the top-level envelope.

### Example

```json
{
  "result": [
    {
      "adamId": 123456789,
      "language": "en",
      "languageCode": "en-US",
      "isPrimaryLocale": true,
      "appName": "AwayFinder - Trip Planner",
      "subTitle": "Plan your next getaway",
      "promotionalText": "Get 3 months of Premium free",
      "shortDescription": "Plan, book, and track every trip in one place",
      "deviceClasses": [
        "IPHONE",
        "IPAD"
      ],
      "assetsByDevice": {
        "iphone_6_5": {
          "appPreviewDeviceFallBackDevices": [
            "iphone6",
            "iphone5"
          ],
          "assets": [
            {
              "assetId": "550e8400-e29b-41d4-a716-446655440000"
            }
          ]
        }
      }
    }
  ],
  "pagination": {
    "pageSize": 20,
    "offset": 0,
    "totalCount": 1
  }
}
```

The `pagination` object contains the following fields:

|Field       |Description                                                                                    |
|------------|-----------------------------------------------------------------------------------------------|
|`pageSize`  |Number of results per page                                                                     |
|`offset`    |Zero-based offset of the first result                                                          |
|`totalCount`|Total number of matching records. Only populated when the request sends `fetchTotalCount: true`|

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)