| int | tweets | Total number of tweets seen
|
| string | first_tweet | date and time of the first tweet seen
|
| string | last_tweet | date and time of the last tweet seen
|
| int | retweets | Total number of retweets seen
|
| string | first_retweet | date and time of the first retweet seen
|
| string | last_retweet | date and time of the last retweet seen
|
| array | statuses | an array of statuses recorded inclduing:
| string | status | the text of the tweet/update
| | string | screen_name | the screen name as recorded when first seen
| | string | status_id | the status id of the tweet (they are really unsigned 64 bit ints)
| | string | datetime | the date/time of the tweet
| | bool | is_retweet | whether or not this was a retweet
| |
| array | clicks | stats related to click-throughs on the eepurl
| int | clicks | Total number of clicks seen
| | string | first_click | date and time of the first click seen
| | string | last_click | date and time of the first click seen
| | array | locations | an array of geographic locations including:
| string | country | the country name the click was tracked to
| | string | region | the region in the country the click was tracked to (if available)
| | int | total | clicks total clicks occuring in this country+region pair
| | | array | referrers | an array of arrays, each containing
| string | referrer | the referrer, truncated to 100 bytes
| | int | clicks | Total number of clicks seen from this referrer
| | string | first_click | date and time of the first click seen from this referrer
| | string | last_click | date and time of the first click seen from this referrer
| | |