Reporting
Stay organized with collections
Save and categorize content based on your preferences.
As with other campaign types, you can use
GoogleAdsService.SearchStream
to retrieve attributes and / or performance metrics for App campaigns.
Impressions and clicks of App Campaigns in last 30 days
The query below will retrieve impressions and clicks from the last 30 days for
all App campaigns, segmented by date.
SELECT
campaign.id,
campaign.name,
campaign.advertising_channel_type,
campaign.advertising_channel_sub_type,
campaign.app_campaign_setting.app_id,
campaign.app_campaign_setting.app_store,
campaign.app_campaign_setting.bidding_strategy_goal_type,
segments.date,
metrics.impressions,
metrics.clicks
FROM campaign
WHERE
campaign.advertising_channel_type = 'MULTI_CHANNEL'
AND campaign.advertising_channel_sub_type IN
('APP_CAMPAIGN', 'APP_CAMPAIGN_FOR_ENGAGEMENT')
AND segments.date DURING LAST_30_DAYS
List of app campaigns ordered by ad group name
The query below will retrieve the first 100 app campaigns, even if no metrics
are yet available, sorted by ad group name.
SELECT
ad_group.name,
campaign.app_campaign_setting.app_id,
campaign.app_campaign_setting.bidding_strategy_goal_type,
campaign.app_campaign_setting.app_store
FROM ad_group
WHERE
campaign.advertising_channel_type = 'MULTI_CHANNEL'
AND campaign.advertising_channel_sub_type = 'APP_CAMPAIGN'
ORDER BY ad_group.name ASC
LIMIT 100
Top 10 apps by conversions
If a publisher of multiple apps would like to understand which are the top ten
apps by conversions, the following query can be used:
SELECT
campaign.app_campaign_setting.app_id,
metrics.all_conversions,
metrics.view_through_conversions
FROM campaign
WHERE campaign.app_campaign_setting.app_id LIKE 'com.google.android.apps.%'
ORDER BY metrics.all_conversions DESC
LIMIT 10
Learn more about app conversions and view through conversions
or conversion tracking data.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-08-25 UTC.
[null,null,["Last updated 2025-08-25 UTC."],[[["\u003cp\u003eUse \u003ccode\u003eGoogleAdsService.SearchStream\u003c/code\u003e to retrieve App campaign data, including attributes and performance metrics.\u003c/p\u003e\n"],["\u003cp\u003eProvided are example queries to get impressions and clicks of App campaigns for the last 30 days, list App campaigns sorted by ad group name, and identify the top 10 apps by conversions.\u003c/p\u003e\n"],["\u003cp\u003eQueries can be tailored to specific needs such as filtering by date range, campaign type (APP_CAMPAIGN or APP_CAMPAIGN_FOR_ENGAGEMENT), or app ID.\u003c/p\u003e\n"],["\u003cp\u003eLearn more about app conversions, view-through conversions, and conversion tracking data using the provided links.\u003c/p\u003e\n"]]],[],null,["# Reporting\n\nAs with other campaign types, you can use\n[`GoogleAdsService.SearchStream`](/google-ads/api/reference/rpc/v21/GoogleAdsService/SearchStream)\nto retrieve attributes and / or performance metrics for App campaigns.\n\nImpressions and clicks of App Campaigns in last 30 days\n-------------------------------------------------------\n\nThe query below will retrieve impressions and clicks from the last 30 days for\nall App campaigns, segmented by date. \n\n SELECT\n campaign.id,\n campaign.name,\n campaign.advertising_channel_type,\n campaign.advertising_channel_sub_type,\n campaign.app_campaign_setting.app_id,\n campaign.app_campaign_setting.app_store,\n campaign.app_campaign_setting.bidding_strategy_goal_type,\n segments.date,\n metrics.impressions,\n metrics.clicks\n FROM campaign\n WHERE\n campaign.advertising_channel_type = 'MULTI_CHANNEL'\n AND campaign.advertising_channel_sub_type IN\n ('APP_CAMPAIGN', 'APP_CAMPAIGN_FOR_ENGAGEMENT')\n AND segments.date DURING LAST_30_DAYS\n\nList of app campaigns ordered by ad group name\n----------------------------------------------\n\nThe query below will retrieve the first 100 app campaigns, even if no metrics\nare yet available, sorted by ad group name. \n\n SELECT\n ad_group.name,\n campaign.app_campaign_setting.app_id,\n campaign.app_campaign_setting.bidding_strategy_goal_type,\n campaign.app_campaign_setting.app_store\n FROM ad_group\n WHERE\n campaign.advertising_channel_type = 'MULTI_CHANNEL'\n AND campaign.advertising_channel_sub_type = 'APP_CAMPAIGN'\n ORDER BY ad_group.name ASC\n LIMIT 100\n\nTop 10 apps by conversions\n--------------------------\n\nIf a publisher of multiple apps would like to understand which are the top ten\napps by conversions, the following query can be used: \n\n SELECT\n campaign.app_campaign_setting.app_id,\n metrics.all_conversions,\n metrics.view_through_conversions\n FROM campaign\n WHERE campaign.app_campaign_setting.app_id LIKE 'com.google.android.apps.%'\n ORDER BY metrics.all_conversions DESC\n LIMIT 10\n\nLearn more about [app conversions and view through conversions](//support.google.com/google-ads/answer/6100665)\nor [conversion tracking data](//support.google.com/google-ads/answer/6270625)."]]