Converted clicks and cost by converted click for Ad group criterion (Keywords, Placements)

81 views
Skip to first unread message

Richard

unread,
Apr 21, 2015, 11:37:47 AM4/21/15
to adwor...@googlegroups.com
Hi !

In the Adwords Editor App and the Adwords website, in a add group, I can filter keywords or placements by {converted clicks} and {cost per converted click}.
How can I do the same filter via the Adwords API?
Or, how can I get {converted clicks} and {cost per converted click} datas for keywords and placements?

I found this service: ConversionTrackerStats but how can I use it with keywords and placements?

For information, my current php code is:

  $adGroupCriterionService = $user->GetService('AdGroupCriterionService', ADWORDS_VERSION);

  // Create selector.
  $selector = new Selector();
  $selector->fields = array('KeywordText', 'KeywordMatchType', 'Id', 'CpcBid');
  $selector->dateRange = new DateRange('20150401', '20150430');

  // Create predicates.
  $selector->predicates[] = new Predicate('AdGroupId', 'IN', array($adGroupId));
  $selector->predicates[] = new Predicate('CriteriaType', 'IN', array('KEYWORD', 'PLACEMENT'));

Josh Radcliff (AdWords API Team)

unread,
Apr 21, 2015, 11:53:04 AM4/21/15
to adwor...@googlegroups.com
Hi,

All performance stats (such as Cost, Impressions, ConvertedClicksCPC, etc.) are available in API reports. You can see the full list of available reports and report fields here.

For your particular use case, the KEYWORDS_PERFORMANCE_REPORT and PLACEMENT_PERFORMANCE_REPORT are a good fit.

Thanks,
Josh, AdWords API Team

Richard

unread,
Apr 22, 2015, 3:20:02 AM4/22/15
to adwor...@googlegroups.com
Thanks !
Reply all
Reply to author
Forward
0 new messages