---
title: AssetQueryResponse
framework: Apple Ads Platform API
role: symbol
role_heading: Object
platforms: [apple ads platform api 1.0+]
path: apple-ads-platform-api/assetqueryresponse
---

# AssetQueryResponse

Paginated response object for asset queries.

## Declaration

```data
object AssetQueryResponse
```

## Properties

result: Array of Asset objects matching the query filters. See Asset. Read-only. pagination: Pagination metadata for the result set, including pageSize (number of results per page), offset (zero-based offset of the first result), and totalCount (total number of matching records, only populated when the request sends fetchTotalCount: true). Read-only. error: Error details if the request failed. Omitted entirely on success. See Error. Read-only.

## Discussion

Discussion The AssetQueryResponse object is the top-level envelope returned by Query Assets. The pagination object describes the current page position. Example {   "result": [     {       "id": "770e8400-e29b-41d4-a716-446655440002",       "name": "awayfinder_hero.png",       "assetType": "IMAGE",       "providerAssetId": "abc123-provider-id",       "promotedObjectId": "123456789",       "promotedObjectType": "APPSTORE_APP",       "providerAssetMetadata": {         "appPreviewDevice": "iphone_6_7",         "assetGenId": "123456789;en-US;iphone_6_7;1;abc123def"       },       "assetDetails": {         "width": 1920,         "height": 1080,         "format": "PNG",         "sizeBytes": 2097152,         "orientation": "LANDSCAPE"       },       "parentAssetId": null,       "variantIds": [],       "creationTime": "2025-01-10T08:00:00.000",       "modificationTime": "2025-01-10T08:00:00.000",       "eligibility": {         "status": "ELIGIBLE",         "blockedGroups": [],         "allowedGroups": []       }     }   ],   "pagination": {     "totalCount": 1,     "offset": 0,     "pageSize": 20   } }

## See Also

- [Asset](apple-ads-platform-api/asset.md)
- [AssetResponse](apple-ads-platform-api/assetresponse.md)
- [AssetEligibility](apple-ads-platform-api/asseteligibility.md)
- [AssetConstraintGroup](apple-ads-platform-api/assetconstraintgroup.md)
