<!--
{
  "availability" : [
    "Apple Ads Platform API: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple-Ads-Platform-API",
  "identifier" : "/documentation/Apple-Ads-Platform-API/AppsAdReportResponse",
  "metadataVersion" : "0.1.0",
  "role" : "Object",
  "symbol" : {
    "kind" : "Object",
    "modules" : [
      "Apple Ads Platform API"
    ],
    "preciseIdentifier" : "data:apple-ads-platform-api:AppsAdReportResponse"
  },
  "title" : "AppsAdReportResponse"
}
-->

# AppsAdReportResponse

The top-level response envelope for apps ad-level reports.

```
object AppsAdReportResponse
```

## Discussion

Check for `error` before processing `result`. Note that ad-level reports don’t support `HOURLY` granularity.

### Example

```json
{
  "result": {
    "rows": [
      {
        "metadata": {
          "id": 234567891,
          "name": "AwayFinder Default Ad",
          "adAccountId": 123456789,
          "campaignId": 444555666,
          "adGroupId": 555666777,
          "status": "ENABLED",
          "deleted": false
        },
        "totalMetrics": {
          "localSpend": {
            "amount": "150.00",
            "currency": "USD"
          },
          "impressions": 10000,
          "taps": 500,
          "ttr": 0.05,
          "cpt": {
            "amount": "0.30",
            "currency": "USD"
          },
          "tapInstalls": 120,
          "totalInstalls": 145
        },
        "granularMetrics": [
          {
            "date": "2025-01-01",
            "localSpend": {
              "amount": "4.80",
              "currency": "USD"
            },
            "impressions": 330,
            "taps": 16,
            "tapInstalls": 4
          }
        ]
      }
    ],
    "summary": {
      "grandTotal": {
        "localSpend": {
          "amount": "150.00",
          "currency": "USD"
        },
        "impressions": 10000,
        "taps": 500,
        "tapInstalls": 120
      }
    }
  },
  "pagination": {
    "offset": 0,
    "pageSize": 20,
    "totalCount": 1
  }
}
```

---

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)