I almost have all the data I need using the following AWQL query from the AdWords API:
String query = "SELECT Device, ID, Impressions, Clicks, Cost, AverageCpc, AveragePosition FROM CRITERIA_PERFORMANCE_REPORT " +
"WHERE Status IN [ENABLED] AND Clicks > 0 DURING LAST_7_DAYS";
I have searched for hours, but cannot find the right column name to get the actual keyword text. I mean, if I can get it's ID, surely I can get the text display value too, no?