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

# AppsSearchResponse

Apps search response envelope.

```
object AppsSearchResponse
```

## Discussion

The search apps endpoint returns `AppsSearchResponse` as the top-level envelope. It extends the standard [`QueryResponse`](/documentation/Apple-Ads-Platform-API/QueryResponse) envelope. To retrieve additional pages, use `pagination`.

### Example

```json
{
  "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
  }
}
```

---

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)