thank you for replying, but to be sure, i can get search keywords and cost fields together with a single API key is that correct?
On Tuesday, July 29, 2025 at 7:47:10 PM UTC+7 Google Ads API Forum Advisor wrote: > Hi, > > Thank you for reaching out to the Google Ads API support team. > > Yes, you can get the search keywords and cost using the keyword_view > <https://developers.google.com/google-ads/api/fields/v20/keyword_view> > report. > I would suggest you try the below sample GAQL query : > > > SELECT ad_group_criterion.keyword.text, > campaign.name, > ad_group.name, > ad_group_criterion.system_serving_status, > ad_group_criterion.keyword.match_type, > ad_group_criterion.approval_status, > ad_group_criterion.final_urls, > metrics.clicks, > metrics.impressions, > metrics.ctr, > metrics.average_cpc, > metrics.cost_micros > FROM keyword_view > WHERE segments.date DURING LAST_7_DAYS > > You can check this Query Cookbook > <https://developers.google.com/google-ads/api/docs/query/cookbook?hl=en> to > replicate the Google Ads UI screens via the Google Ads API. > > Additionally, you can utilize the Query Builder > <https://developers.google.com/google-ads/api/fields/v20/keyword_view_query_builder> > and Query Validator > <https://developers.google.com/google-ads/api/fields/v20/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 > <https://developers.google.com/google-ads/api/reference/rpc/v20/GoogleAdsService#searchstream> > or GoogleAdsService.Search > <https://developers.google.com/google-ads/api/reference/rpc/v20/GoogleAdsService#search> > . > > I hope this helps! Let us know if you have any further questions. > > Thanks, > > [image: Google Logo] Google Ads API Team > Feedback > How was our support today? > > [image: rating1] > <https://docs.google.com/forms/d/e/1FAIpQLSeRhIg5VeThVmbcD0c5DTWTDjmpJuSktN8vFelEL7_KV_Orbg/viewform?usp=pp_url&entry.141427034=1&entry.295079254=500Ht00001sx4fMIAQ> > > [image: rating2] > <https://docs.google.com/forms/d/e/1FAIpQLSeRhIg5VeThVmbcD0c5DTWTDjmpJuSktN8vFelEL7_KV_Orbg/viewform?usp=pp_url&entry.141427034=2&entry.295079254=500Ht00001sx4fMIAQ> > > [image: rating3] > <https://docs.google.com/forms/d/e/1FAIpQLSeRhIg5VeThVmbcD0c5DTWTDjmpJuSktN8vFelEL7_KV_Orbg/viewform?usp=pp_url&entry.141427034=3&entry.295079254=500Ht00001sx4fMIAQ> > > [image: rating4] > <https://docs.google.com/forms/d/e/1FAIpQLSeRhIg5VeThVmbcD0c5DTWTDjmpJuSktN8vFelEL7_KV_Orbg/viewform?usp=pp_url&entry.141427034=4&entry.295079254=500Ht00001sx4fMIAQ> > > [image: rating5] > <https://docs.google.com/forms/d/e/1FAIpQLSeRhIg5VeThVmbcD0c5DTWTDjmpJuSktN8vFelEL7_KV_Orbg/viewform?usp=pp_url&entry.141427034=5&entry.295079254=500Ht00001sx4fMIAQ> > [2025-07-29 12:46:03Z GMT] This message is in relation to case > "ref:!00D1U01174p.!500Ht01sx4fM:ref" (ADR-00320980) > > > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "Google Ads API and AdWords API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion visit https://groups.google.com/d/msgid/adwords-api/17f6ef1e-d216-40a3-aae7-f5814480f3d4n%40googlegroups.com.
