I am using GetKeywords API in php.I get id match type,keyword text from api ,but how to get impressions,CTR ,max CPC from GetKeywords API.Below is the sample code :
if ($page->getEntries() !== null) {
$totalNumEntries = $page->getTotalNumEntries();
foreach ($page->getEntries() as $adGroupCriterion) {
printf(
"Keyword with text '%s', match type '%s', criteria type '%s', "
. "and ID %d was found.\n",
$adGroupCriterion->getCriterion()->getText(),
$adGroupCriterion->getCriterion()->getMatchType(),
$adGroupCriterion->getCriterion()->getType(),
$adGroupCriterion->getCriterion()->getId()
);
}
}