Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Right at the end of the Ad group graph documentation, it mentions keyword stats. Having managed to find an example of where we're using this, I'm not entirely sure what the stats are I'm recieving.

For example, I get keywords stats (retrieved at ~2011-11-02T09:55:00+0000):

{
  "data": {
    "electronics": {
      "impressions": 2388, 
      "clicks": 1, 
      "unique_impressions": 557, 
      "unique_clicks": 1
    }, 
    "mobile": {
      "impressions": 3159, 
      "clicks": 2, 
      "unique_impressions": 637, 
      "unique_clicks": 2
    }, 
    "photography": {
      "impressions": 202929, 
      "clicks": 83, 
      "unique_impressions": 38692, 
      "unique_clicks": 83
    }
  }
}

That's a total of 85 clicks.

Getting the stats for the last 7 days, I get:

{
  "id": "6003855466377/stats/1320192000/1320796800", 
  "impressions": 203984, 
  "clicks": 82, 
  "spent": 4715, 
  "social_impressions": 0, 
  "social_clicks": 0, 
  "social_spent": 0, 
  "unique_impressions": 38753, 
  "social_unique_impressions": 0, 
  "unique_clicks": 82, 
  "social_unique_clicks": 0, 
  "actions": 0, 
  "connections": 0, 
  "adgroup_id": 6003855466377, 
  "start_time": "2011-11-02T00:00:00+0000", 
  "end_time": "2011-11-09T00:00:00+0000"
}

Which says 82 clicks. I've tried various interpretations of the "past 7 days (excluding the current day)", and I can't get the figures to match.

  • Why don't the stats match? (Is this a timezone thing?)
  • Can I get keywordstats by day? How?

This would be a really useful metric for our Facebook team here, especially as Facebook advertising is still a new(ish), and evolving, tool for us.

EDIT

Ok, so I can understand that keywordstats are duplicated (if I'm interested in mobile + photography, then an impression counts twice), but surely having one category that's has higher clicks than the entire adgroup is still wrong?

share|improve this question
If you add a bounty to your question, you're much more likely to get an answer. – Michael Pryor Feb 22 '12 at 13:44
@MichaelPryor - yeah, but I was redirected here from the facebook developer pages, saying this is where to ask for support. Why should I waste my reputation points on my employer's problem? – David Kemp Feb 22 '12 at 14:16
4  
...because you want an answer? doesn't seem like wasting when you are spending imaginary unicorn points to trade for knowledge. – Michael Pryor Feb 22 '12 at 14:24

2 Answers

Keyword stats are specific to each keyword and can be queried for the past 7 days.

http://developers.facebook.com/docs/reference/ads-api/keywordstats/

share|improve this answer

You can instead query https://developers.facebook.com/docs/reference/ads-api/reachestimate/ reach estimate and use the specific ad group and get the stats on a specific keyword as far as impressions (imp_estimates) for that keyword. You can include the hash for the keyword in the keyword search too, so #katy perry would work if you used that target

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.