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

# EligibilityQueryResponse

The paginated response object for an app eligibility query.

```
object EligibilityQueryResponse
```

## 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

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

---

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)