Contents

AppsMetrics

Metrics for apps promoted object type.

Declaration

object AppsMetrics

Properties

NameTypeDescription
datedate

Report date in YYYY-MM-DD format.

localSpendMoney

Total spend in the reporting period. See Money.

impressionsint64

Total ad impressions.

tapsint64

Total ad taps.

ttrnumber

Tap-through rate (taps divided by impressions).

cptMoney

Average cost per tap. See Money.

cpmMoney

Average cost per thousand impressions. See Money.

tapInstallsint64

Number of installs attributed to taps.

tapInstallCPIMoney

Average cost per tap-attributed install. See Money.

totalNewDownloadsint64

Total new downloads (first-time installs) across all attribution types.

totalRedownloadsint64

Total redownloads (installs of an app the user previously had installed, verified by the App Store) across all attribution types.

viewInstallsint64

Number of installs attributed to view-through (impression-based) attribution.

totalInstallsint64

Total installs combining tap and view attribution.

tapNewDownloadsint64

New downloads attributed to taps.

tapRedownloadsint64

Redownloads attributed to taps.

viewNewDownloadsint64

New downloads attributed to view-through impressions.

viewRedownloadsint64

Redownloads attributed to view-through impressions.

totalAvgCPIMoney

Average cost per install across all attribution types. See Money.

totalInstallRatenumber

Total install rate (total installs divided by taps).

tapInstallRatenumber

Tap install rate (tap installs divided by taps).

tapPreOrdersPlacedint64

Pre-orders placed attributed to taps.

viewPreOrdersPlacedint64

Pre-orders placed attributed to view-through impressions.

totalPreOrdersPlacedint64

Total pre-orders placed across all attribution types.

Discussion

The AppsMetrics object is the base metrics for apps campaign reports. It contains all standard performance metrics available for app promotion campaigns, including spend, impressions, taps, installs (split by tap-through and view-through attribution), pre-orders, and derived rates.

All monetary fields reference Money objects in the account’s reporting currency.

Example

{
  "date": "2025-01-10",
  "localSpend": {
    "amount": "482.50",
    "currency": "USD"
  },
  "impressions": 152300,
  "taps": 3210,
  "ttr": 0.021,
  "cpt": {
    "amount": "0.15",
    "currency": "USD"
  },
  "cpm": {
    "amount": "3.17",
    "currency": "USD"
  },
  "tapInstalls": 640,
  "tapInstallCPI": {
    "amount": "0.75",
    "currency": "USD"
  },
  "totalNewDownloads": 710,
  "totalRedownloads": 58,
  "viewInstalls": 128,
  "totalInstalls": 768,
  "tapNewDownloads": 592,
  "tapRedownloads": 48,
  "viewNewDownloads": 118,
  "viewRedownloads": 10,
  "totalAvgCPI": {
    "amount": "0.63",
    "currency": "USD"
  },
  "totalInstallRate": 0.2393,
  "tapInstallRate": 0.1994,
  "tapPreOrdersPlaced": 22,
  "viewPreOrdersPlaced": 4,
  "totalPreOrdersPlaced": 26
}

See Also