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

# AdGroupQueryResponse

The response object for an ad group query, containing matched results and pagination metadata.

```
object AdGroupQueryResponse
```

## Discussion

The `AdGroupQueryResponse` object is returned by the ad group query endpoint.

Use the `QueryRequest` body with `filters` to scope results to a specific campaign, status, or set of ad group IDs.

### Example

```json
{
  "result": [
    {
      "id": 555666777,
      "name": "AwayFinder - Broad Match",
      "adAccountId": 123456789,
      "campaignId": 444555666,
      "startTime": "2025-09-01T08:00:00.000",
      "endTime": null,
      "pricingModel": "CPT",
      "automatedKeywordsOptIn": true,
      "status": "ENABLED",
      "systemStatus": "RUNNING",
      "systemStatusReasons": [],
      "systemStatusLimitingReasons": [],
      "automatedKeywordsRequired": false,
      "displayStatus": "RUNNING",
      "bidStrategy": {
        "bidStrategyType": "MANUAL_CPT",
        "bidStrategyGoal": "TAP",
        "bid": {
          "amount": "5.00",
          "currency": "USD"
        }
      },
      "targeting": null,
      "creationTime": "2025-09-01T08:00:00.000",
      "modificationTime": "2025-09-01T08:00:00.000",
      "deleted": false,
      "cpaCap": null
    }
  ],
  "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)