Contents

Ads Report

Retrieve performance metrics for ads.

URL

POST https://api.ads.apple.com/v1/reports/apps/ads/query

Header Parameters

NameTypeDescription
X-Ap-Context Requiredstring

Response Codes

StatusReasonTypeDescription
200OK
Content-Type: application/json
AppsAdReportResponse

Successful response. Returns AppsAdReportResponse (result: AppsAdResultContainer).

400Bad Request
Content-Type: application/json
Error

Bad Request. Returns ErrorResponse.

401Unauthorized
Content-Type: application/json
Error

Unauthorized.

403Forbidden
Content-Type: application/json
Error

Forbidden.

404Not Found
Content-Type: application/json
Error

Not Found. Returns ErrorResponse.

429Too Many Requests
Content-Type: application/json
Error

Rate Limit Exceeded. Returns ErrorResponse.

500Internal Server Error
Content-Type: application/json
Error

Internal Server Error. Returns ErrorResponse.

Discussion

Ad reports return one row per ad. Each row contains a metadata object with ad identifiers (including campaignId and adGroupId), totalMetrics aggregated over the full date range, and a granularMetrics array broken down by the selected granularity.

Every apps report request requires a campaignId filter; optionally add adGroupId in the filters array to scope results to a specific ad group.

See Filter for the full set of supported comparison operators.

Request Body

See AppsReportingRequest.

groupBy Dimensions

storefront, countryOrRegion

The following dimensions are not supported for the AD entity: deviceClass, ageRange, gender, countryCode, adminArea, locality.

Ad reports follow the standard date range rules per granularity, except HOURLY isn’t available at the ad level.

Granularity

Constraint

DAILY

Date range start must be within the last 90 days. Date range must be greater than one day.

HOURLY

Not supported for the AD entity.

WEEKLY

Date range start within the last 365 days. End date must be at least 14 days in the past.

MONTHLY

End date must be at least 90 days in the past.

To request a single day of data, omit granularity entirely. For a single-day request, the response returns results in totalMetrics only, since there is no granularMetrics breakdown to compute.

Only DAILY granularity or coarser is available for ads, and either ORTZ or UTC timezones are accepted.

Constraint

Detail

HOURLY granularity

Not available for ads. Use DAILY as the finest granularity.

Timezone

Use ORTZ (reporting timezone) or UTC.

Payload Examples

See Also