
SELECT search_term_view.search_term, metrics.impressions, metrics.clicks, metrics.cost_micros, metrics.conversions, metrics.interactions, segments.date, segments.keyword.info.text FROM search_term_view WHERE ad_group.id = ##### AND campaign.id = ##### AND search_term_view.status != 'EXCLUDED' AND metrics.impressions > 1 AND metrics.clicks > 1 AND segments.date BETWEEN '2024-11-01' AND '2024-11-30' AND segments.keyword.info.text IN ('keyword 1', 'keyword 2')Additionally, you can utilize the Query Builder and Query Validator to build and validate your queries. To retrieve Google Ads API entities and reporting data, you can use one of these methods like GoogleAdsService.SearchStream or GoogleAdsService.Search.
![]() |
Google Ads API Team |
Hi,
With regard to your concern, we are checking with the rest of our team and one of our colleagues will reach out to you once we have an update.
Note that the ".*" before and after each keyword is required, because REGEXP_MATCH attempts to match against the entire string. You can chain more of these together, but beware that the more complicated the regular expression, the worse the performance of the query may get.
![]() |
|
||||