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

# AppSupportedLanguagesQueryResponse

Paginated response object for the supported app languages query.

```
object AppSupportedLanguagesQueryResponse
```

## Discussion

The `AppSupportedLanguagesQueryResponse` object is the top-level envelope returned by [`Query Supported App Languages`](/documentation/Apple-Ads-Platform-API/Query-Supported-App-Languages).

### Example

```json
{
  "result": [
    {
      "name": "United States",
      "countryCode": "US",
      "adsSupportedLanguages": [
        {
          "language": "en",
          "languageCode": "en-US"
        },
        {
          "language": "es",
          "languageCode": "es-US"
        }
      ],
      "adsDefaultLanguages": [
        {
          "language": "en",
          "languageCode": "en-US"
        }
      ]
    }
  ],
  "pagination": {
    "offset": 0,
    "pageSize": 100,
    "totalCount": 91
  }
}
```

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)