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

# AppsSearchResponse

Apps search response envelope.

## Declaration

```data
object AppsSearchResponse
```

## Properties

result: Array of apps matching the search criteria. See AppInfo. pagination: Pagination metadata for the current result page. See QueryPaginationResult. error: Error details if the request failed. Absent on success. See Error.

## Discussion

Discussion The search apps endpoint returns AppsSearchResponse as the top-level envelope. It extends the standard QueryResponse envelope. To retrieve additional pages, use pagination. Example {   "result": [     {       "adamId": 123456789,       "appName": "AwayFinder",       "developerName": "AwayFinder Inc.",       "countryOrRegionCodes": [         "US",         "GB",         "CA",         "AU"       ]     },     {       "adamId": 123456790,       "appName": "AwayFinder Pro",       "developerName": "AwayFinder Inc.",       "countryOrRegionCodes": [         "US"       ]     }   ],   "pagination": {     "totalCount": 2,     "offset": 0,     "pageSize": 2   } }

## See Also

- [AppInfo](apple-ads-platform-api/appinfo.md)
- [AppLocaleDetails](apple-ads-platform-api/applocaledetails.md)
- [AppLocaleDetailsQueryResponse](apple-ads-platform-api/applocaledetailsqueryresponse.md)
- [AppSupportedLanguages](apple-ads-platform-api/appsupportedlanguages.md)
- [AppSupportedLanguagesQueryResponse](apple-ads-platform-api/appsupportedlanguagesqueryresponse.md)
