Contents

AppsSearchResponse

Apps search response envelope.

Declaration

object AppsSearchResponse

Properties

NameTypeDescription
result Required[AppInfo]

Array of apps matching the search criteria. See AppInfo.

paginationQueryPaginationResult

Pagination metadata for the current result page. See QueryPaginationResult.

errorError

Error details if the request failed. Absent on success. See Error.

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