<!--
{
  "availability" : [
    "Search Ads: 5.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple_Ads",
  "identifier" : "/documentation/apple_ads/Find-App-Assets",
  "metadataVersion" : "0.1.0",
  "role" : "Web Service Endpoint",
  "symbol" : {
    "kind" : "Web Service Endpoint",
    "modules" : [
      "Apple Ads"
    ],
    "preciseIdentifier" : "rest:apple_ads:post:v5-apps-{}-assets-find"
  },
  "title" : "Find App Assets"
}
-->

# Find App Assets

Fetches app asset metadata by adam ID.

## Discussion

Use this endpoint with [`Selector`](/documentation/apple_ads/Selector) to find app asset metadata associated with an `adamId`. Use your `adamId` in the resource path. See the [`AppAsset`](/documentation/apple_ads/AppAsset) object for parameter descriptions and selector condition operators.

This endpoint supports default and custom product page ads.

### Payload example: Find app assets

**Request:**

```
HTTP POST https://api.searchads.apple.com/api/v5/apps/{adamId}/assets/find

{
  “conditions”: [
    {
      “field”: “assetGenId”,
      “operator”: “equals”,
      “values”: [
        “368234568;en-US;9;0;4201c5a4bd4087cc82xdfetdc8141b94d0”
      ]
    }
  ]
}
```

**Response:**

```json
{
  "data": [
    {
      "assetGenId": "368234568;en-US;9;0;4201c5a4bd4087cc82xdfetdc8141b94d0",
      "adamId": 835599320,
      "assetURL”: “https://is5-ssl.mzstatic.com/image/thumb/source113/v4/25/f5/70/25f57023-87bd-25f0-71dc-bf5f48525b4c/afcd3ec4-d7af-49c5-9d93-44084b0abea8_2208x1242iphone55_4.jpg/2208x1242.jpg",
      "assetVideoURL": null,
      "appPreviewDevice": “iphone_6_7”,
      "sourceHeight": 2208,
      "sourceWidth": 1242,
      "orientation": "PORTRAIT",
      "assetType": "SCREENSHOT"
    },
    {
      "assetGenId": "368234568;en-US;9;0;4201c5a4bd4087cc82xdfetdc8141b94d0",
      "adamId": 835599320,
      "assetURL”: “https://is5-ssl.mzstatic.com/image/thumb/PurpleSource122/v4/0b/d2/ea/0bd2ea96-744a-4341-2227-8aaa5c79ceef/84589e4f-d770-4444-9ade-e0806658f171_0.png/1290x2796.jpg",
      "assetVideoURL": null,
      "appPreviewDevice": "iphone_6_7",
      "sourceHeight": 1290,
      "sourceWidth": 2796,
      "orientation": “LANDSCAPE”,
      "assetType": “SCREENSHOT”
    }
 ],
  "pagination": {
    "totalResults": 2,
    "startIndex": 0,
    "itemsPerPage": 10
  }
}
```

---

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)