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

# BrandQueryResponse

The Query Brands endpoint returns this response object.

```
object BrandQueryResponse
```

## Discussion

The [`Query Brands`](/documentation/Apple-Ads-Platform-API/Query-Brands) returns `BrandQueryResponse` as the top-level envelope. The `result` array contains all [`Brand`](/documentation/Apple-Ads-Platform-API/Brand) objects that match the supplied filters, subject to pagination. To page through large result sets, use `pagination.totalCount` and `pagination.offset`.

### Example

```json
{
  "result": [
    {
      "id": "123456789",
      "name": "AwayFinder",
      "countryOrRegion": "US",
      "categories": [
        "shopping.retail",
        "dining.restaurant"
      ],
      "eligibility": {
        "status": "ELIGIBLE",
        "blockedGroups": [],
        "allowedGroups": [],
        "modificationTime": "2025-01-10T08:00:00.000"
      },
      "creationTime": "2025-01-10T08:00:00.000",
      "modificationTime": "2025-01-10T08:00:00.000"
    }
  ],
  "pagination": {
    "offset": 0,
    "pageSize": 20,
    "totalCount": 1
  }
}
```

---

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)