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

# CreativeQueryResponse

The response object for a Creative query, containing matched results and pagination metadata.

```
object CreativeQueryResponse
```

## Discussion

The `CreativeQueryResponse` object is returned by the ad creatives query endpoint and contains the filtered, sorted, and paginated set of `Creative` objects matching the request.

To scope results by `adAccountId`, `creativeType`, `systemStatus`, or other filterable fields, use the `QueryRequest` body with `filters`.

### Example

```json
{
  "result": [
    {
      "id": 666777888,
      "adAccountId": 123456789,
      "name": "AwayFinder - Summer Campaign Creative",
      "creativeType": "CUSTOM_PRODUCT_PAGE",
      "systemStatus": "VALID",
      "deleted": false,
      "creationTime": "2025-06-01T10:00:00.000",
      "modificationTime": "2025-06-01T10: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)