<!--
{
  "availability" : [
    "Apple Ads Platform API: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple-Ads-Platform-API",
  "identifier" : "/documentation/Apple-Ads-Platform-API/Get-App-Details-by-Adam-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:apps-{}"
  },
  "title" : "Get App Details by Adam ID"
}
-->

# Get App Details by Adam ID

Retrieve application details for a specific Adam ID.

## Discussion

This endpoint retrieves the full details of a specific app by its Adam identifier, including its name, genre, and supported device classes.

Obtain the app’s Adam ID from a search or from existing campaign targeting data before calling this endpoint. The endpoint returns a single `AppDetails` object in the `result` field, or a `null` result with an `ENTITY_NOT_FOUND` error if no app matches the supplied Adam ID.

Use the returned `deviceClasses` and `availableStorefronts` values to confirm that an app’s supported devices and countries or regions align with a campaign’s targeting settings before creating an ad group.

## Payload Examples

**Get App Details:**

### Request

Retrieves the full details of a specific app by its Adam identifier, including its name, genre, and supported device classes.

```
GET https://api.ads.apple.com/v1/apps/324684580
```

### Response

```json
{
 "result": {
   "id": "324684580",
   "appName": "My Productivity App",
   "artistName": "My Developer",
   "primaryLanguage": "en-US",
   "primaryGenre": "Productivity",
   "secondaryGenre": "Travel",
   "deviceClasses": [
     "IPHONE",
     "IPAD"
   ],
   "iconPictureUrl": "https://is1-ssl.mzstatic.com/image/thumb/Purple/v4/example.jpg",
   "isPreorder": false,
   "availableStorefronts": [
     "US",
     "GB",
     "CA"
   ]
 }
}
```

---

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)