asset_group_top_combination_view 리소스를 사용하여 애셋 그룹에서 실적이 우수한 애셋 조합을 쿼리할 수 있습니다. 이는 Google Ads UI의 조합 보고서에 해당합니다. 예를 들어 다음 쿼리는 지정된 asset_group의 인기 애셋 조합 목록을 생성합니다. 대답의 각 행에는 AssetGroupAssetCombinationData 유형의 asset_group_top_combination_view.asset_group_top_combinations 메시지 목록이 포함됩니다.
목록의 각 항목에는 AssetUsage 메시지로 표시된 각 조합의 저작물 목록이 포함되어 있습니다.
이 쿼리를 조정하여 확장 소재 선택 및 캠페인 최적화에 활용할 수 있습니다.
다음 쿼리는 단일 캠페인의 상위 확장 소재 조합을 검색하지만 asset_group.ad_strength이 GOOD 또는 EXCELLENT인 확장 소재 그룹에 대해서만 검색합니다. 이를 통해 실적이 우수한 애셋 그룹 내에서 실적이 가장 우수한 애셋 조합을 파악할 수 있습니다.
[null,null,["최종 업데이트: 2025-08-27(UTC)"],[],[],null,["# Asset Performance\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\nIt's possible to obtain asset level performance by using the\n[`asset_group_asset`](/google-ads/api/fields/v21/asset_group_asset) resource.\n\nAsset performance with `asset_group_asset`\n------------------------------------------\n\nOn the [`asset_group_asset`](/google-ads/api/fields/v21/asset_group_asset) resource, the\n[`performance_label`](/google-ads/api/fields/v21/asset_group_asset#asset_group_asset.performance_label)\nfield ranks the asset against other assets of the same type. For more details,\nsee [About asset reporting in Performance\nMax](//support.google.com/google-ads/answer/10725056). \n\n SELECT\n asset_group_asset.asset,\n asset_group_asset.performance_label,\n asset_group_asset.status\n FROM asset_group_asset\n WHERE asset_group.id = \u003cvar translate=\"no\"\u003e\u003cspan class=\"devsite-syntax-n\"\u003eASSET_GROUP_ID\u003c/span\u003e\u003c/var\u003e\n AND asset_group_asset.status != 'REMOVED'\n\nTop asset combinations\n----------------------\n\nThe\n[`asset_group_top_combination_view`](/google-ads/api/fields/v21/asset_group_top_combination_view)\nresource can be used to query the top performing combinations of assets in asset\ngroups. This corresponds to the [Combinations\nreport](//support.google.com/google-ads/answer/10725056#combinations) in the\nGoogle Ads UI. For example, the following query produces a list of the top asset\ncombinations in a specified `asset_group`. Each row in the response contains a\nlist of `asset_group_top_combination_view.asset_group_top_combinations` messages\nof type\n[`AssetGroupAssetCombinationData`](/google-ads/api/reference/rpc/v21/AssetGroupAssetCombinationData).\nEach item in that list contains a list of the assets in the respective\ncombination represented as an [`AssetUsage`](/google-ads/api/reference/rpc/v21/AssetUsage) message. \n\n SELECT asset_group_top_combination_view.asset_group_top_combinations\n FROM asset_group_top_combination_view\n WHERE asset_group.id = \u003cvar translate=\"no\"\u003e\u003cspan class=\"devsite-syntax-n\"\u003eASSET_GROUP_ID\u003c/span\u003e\u003c/var\u003e\n\nYou can adapt this query to help with asset selection and campaign optimization.\nThe following query retrieves the top asset combination for a single campaign,\nbut only for asset groups with an\n[`asset_group.ad_strength`](/google-ads/api/fields/v21/asset_group#asset_group.ad_strength) of\n`GOOD` or `EXCELLENT`. This helps you identify the best-performing asset\ncombinations within your top-performing asset groups.\n**Note:** this report is automatically segmented by asset group. `asset_group.id` is included in the `SELECT` clause for asset group identification purposes. \n\n SELECT\n asset_group_top_combination_view.asset_group_top_combinations,\n asset_group.ad_strength,\n asset_group.id\n FROM asset_group_top_combination_view\n WHERE asset_group.ad_strength IN ('GOOD', 'EXCELLENT')\n AND campaign.id = \u003cvar translate=\"no\"\u003e\u003cspan class=\"devsite-syntax-n\"\u003eCAMPAIGN_ID\u003c/span\u003e\u003c/var\u003e"]]