Campaign level performance
Stay organized with collections
Save and categorize content based on your preferences.
Viewing Performance Max campaign performance is similar to viewing the
performance for any other campaign type. However,
you must add a filter to include only campaigns with an
advertising_channel_type
equal to PERFORMANCE_MAX
.
For example, the following query returns the performance for all Performance Max
campaigns over the last 30 days. You can also limit the results to a single
campaign by filtering on campaign.id
or
campaign.resource_name
. This
corresponds to the Performance Max channel asset
Reporting in the Google Ads
UI.
SELECT
metrics.impressions,
metrics.clicks,
metrics.conversions,
metrics.cost_micros
FROM campaign
WHERE campaign.advertising_channel_type = 'PERFORMANCE_MAX'
AND segments.date DURING LAST_30_DAYS
The performance_max_placement_view
exposes placement impression metrics for Performance Max campaigns to gain
insights into where a campaign's ads were shown. The following query
demonstrates how to retrieve impressions by placement for a specific Performance
Max campaign during the last 30 days.
SELECT
performance_max_placement_view.display_name,
performance_max_placement_view.placement,
performance_max_placement_view.placement_type,
performance_max_placement_view.target_url,
metrics.impressions,
campaign.id
FROM performance_max_placement_view
WHERE
campaign.id = CAMPAIGN_ID
AND segments.date DURING LAST_30_DAYS
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."],[],[],null,["# Campaign level performance\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\nViewing Performance Max campaign performance is similar to [viewing the\nperformance for any other campaign type](/google-ads/api/docs/reporting/example). However,\nyou must add a filter to include only campaigns with an\n[`advertising_channel_type`](/google-ads/api/fields/v21/campaign#campaign.advertising_channel_type)\nequal to `PERFORMANCE_MAX`.\n\nPerformance for all Performance Max campaigns\n---------------------------------------------\n\nFor example, the following query returns the performance for all Performance Max\ncampaigns over the last 30 days. You can also limit the results to a single\ncampaign by filtering on [`campaign.id`](/google-ads/api/fields/v21/campaign#campaign.id) or\n[`campaign.resource_name`](/google-ads/api/fields/v21/campaign#campaign.resource_name). This\ncorresponds to the [Performance Max channel asset\nReporting](//support.google.com/google-ads/answer/10725056) in the Google Ads\nUI. \n\n SELECT\n metrics.impressions,\n metrics.clicks,\n metrics.conversions,\n metrics.cost_micros\n FROM campaign\n WHERE campaign.advertising_channel_type = 'PERFORMANCE_MAX'\n AND segments.date DURING LAST_30_DAYS\n\nPerformance Max campaign placements\n-----------------------------------\n\nThe [`performance_max_placement_view`](/google-ads/api/fields/v21/performance_max_placement_view)\nexposes placement impression metrics for Performance Max campaigns to gain\ninsights into where a campaign's ads were shown. The following query\ndemonstrates how to retrieve impressions by placement for a specific Performance\nMax campaign during the last 30 days. \n\n SELECT\n performance_max_placement_view.display_name,\n performance_max_placement_view.placement,\n performance_max_placement_view.placement_type,\n performance_max_placement_view.target_url,\n metrics.impressions,\n campaign.id\n FROM performance_max_placement_view\n WHERE\n campaign.id = \u003cvar translate=\"no\"\u003e\u003cspan class=\"devsite-syntax-n\"\u003eCAMPAIGN_ID\u003c/span\u003e\u003c/var\u003e\n AND segments.date DURING LAST_30_DAYS"]]