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

# EligibilityQueryResponse

The paginated response object for an app eligibility query.

## Declaration

```data
object EligibilityQueryResponse
```

## Properties

result: Array of EligibilityResponse records matching the supplied filter criteria. Read-only. pagination: Pagination metadata for the response, including offset, pageSize, and totalCount. See QueryPaginationResult. Read-only. error: Error information if the request encountered an error. See Error. Read-only.

## Discussion

Discussion The eligibility query endpoint returns EligibilityQueryResponse as the paginated response. To iterate through large result sets, use the totalCount and offset fields on the embedded QueryPaginationResult object. Example {   "result": [     {       "adamId": 10738622087,       "supplyPlacement": "APPSTORE_SEARCH_RESULTS",       "supplySource": "APPSTORE",       "minAge": 18,       "state": "ELIGIBLE",       "countryOrRegion": "US",       "deviceClass": "IPHONE",       "creationTime": "2026-02-05T08:30:00.000",       "modificationTime": "2026-03-05T08:30:00.000"     },     {       "adamId": 10738622087,       "supplyPlacement": "APPSTORE_SEARCH_RESULTS",       "supplySource": "APPSTORE",       "minAge": 18,       "state": "INELIGIBLE",       "countryOrRegion": "BR",       "deviceClass": "IPHONE",       "creationTime": "2026-02-05T08:30:00.000",       "modificationTime": "2026-03-05T08:30:00.000"     }   ],   "pagination": {     "pageSize": 20,     "offset": 0,     "totalCount": 2   } }

## See Also

- [EligibilityQueryRequest](apple-ads-platform-api/eligibilityqueryrequest.md)
- [RejectionReasonResponse](apple-ads-platform-api/rejectionreasonresponse.md)
- [AppDetailsResponse](apple-ads-platform-api/appdetailsresponse.md)
- [AppDetails](apple-ads-platform-api/appdetails.md)
- [EligibilityResponse](apple-ads-platform-api/eligibilityresponse.md)
