<!--
{
  "availability" : [
    "Apple Ads Platform API: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple-Ads-Platform-API",
  "identifier" : "/documentation/Apple-Ads-Platform-API/Get-Asset-by-ID",
  "metadataVersion" : "0.1.0",
  "role" : "Web Service Endpoint",
  "symbol" : {
    "kind" : "Web Service Endpoint",
    "modules" : [
      "Apple Ads Platform API"
    ],
    "preciseIdentifier" : "rest:apple-ads-platform-api:get:assets-{}"
  },
  "title" : "Get Asset"
}
-->

# Get Asset

Retrieve a single asset by its UUID.

## Discussion

This endpoint retrieves a single asset by its UUID. Use it after uploading an asset to check its `eligibility` status before referencing it in a creative.

This endpoint still returns deleted assets, with `deleted: true`. Responses always include the `eligibility` field unless excluded via a `fields` projection parameter.

## Payload Examples

**Get Asset:**

### Request

Retrieves a single asset by its UUID.

```
GET https://api.ads.apple.com/v1/assets/770e8400-e29b-41d4-a716-446655440002
```

### Response

```json
{
 "result": {
   "id": "770e8400-e29b-41d4-a716-446655440002",
   "name": "awayfinder_hero.png",
   "assetType": "IMAGE",
   "providerAssetId": "abc123-provider-id",
   "promotedObjectId": "987654321",
   "promotedObjectType": "BUSINESS_BRAND",
   "providerAssetMetadata": {},
   "assetDetails": {
     "width": 1920,
     "height": 1080,
     "format": "PNG",
     "sizeBytes": 2097152,
     "orientation": "LANDSCAPE"
   },
   "parentAssetId": null,
   "variantIds": [],
   "creationTime": "2026-03-01T12:00:00.000",
   "modificationTime": "2026-03-01T12:00:00.000",
   "eligibility": {
     "status": "ELIGIBLE",
     "blockedGroups": [],
     "allowedGroups": []
   }
 }
}
```

---

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)