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

# AssetEligibility

Eligibility status and constraint details for an asset.

```
object AssetEligibility
```

## Discussion

The `AssetEligibility` object captures the policy evaluation result for an asset. The `Asset` responses always include it (unless excluded via the `fields` parameter), and it describes whether and where the asset can be used for ad serving.

Check `AssetEligibility` before including an asset in a creative. You can’t use assets with `INELIGIBLE` or `PENDING` status in any ad unit. Assets with `LIMITED` status can serve in some placements or markets. See [`AssetEligibilityStatus`](/documentation/Apple-Ads-Platform-API/AssetEligibilityStatus) for the full list of status values.

### Example

```json
{
  "status": "LIMITED",
  "blockedGroups": [
    {
      "supplyPlacement": ["SEARCH_TAB"],
      "countryOrRegion": ["CN"]
    }
  ],
  "allowedGroups": [
    {
      "supplyPlacement": ["SEARCH_TAB", "TODAY_TAB", "SEARCH_RESULTS"],
      "countryOrRegion": ["US", "GB"]
    }
  ]
}
```

---

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)