Contents

AppInfo

A single app search result.

Declaration

object AppInfo

Properties

NameTypeDescription
adamId Requiredint64

The Adam ID of the app. Use this value when creating campaigns targeting this app.

appName Requiredstring

The app display name as shown in the App Store.

developerName Requiredstring

The developer or publisher name.

countryOrRegionCodes Required[string]

ISO 3166-1 alpha-2 codes for all App Store countries or regions where this app is available.

Discussion

The AppInfo object represents one app returned from the search apps endpoint. It includes the app’s Adam ID, display name, developer name, and the country or region codes where the app is available.

Example

{
  "adamId": 123456789,
  "appName": "AwayFinder",
  "developerName": "AwayFinder Inc.",
  "countryOrRegionCodes": [
    "US",
    "CA",
    "GB"
  ]
}

See Also