In [1]:
import twitter
# Go to http://dev.twitter.com/apps/new to create an app and get values
# for these credentials, which you'll need to provide in place of these
# empty string values that are defined as placeholders.
# See https://dev.twitter.com/docs/auth/oauth for more information
# on Twitter's OAuth implementation.
CONSUMER_KEY = 'Tx8GozuzaraJO89LypsTqFUNM'
CONSUMER_SECRET ='uC0KPaRZjGY0qoNJAxBQb0jbb3Us4DXJVKFCP1qtSfjFgbRvd0'
OAUTH_TOKEN = '571213367-BC7MYnWpLbvy2AYhvqCu6Fh1EIeFasPxo0Y8uBEn'
OAUTH_TOKEN_SECRET = 'KA9GddiLbVwummLoSGmDYMNQFVaR3P4YiGo7Zs6D5e7Qz'
auth = twitter.oauth.OAuth(OAUTH_TOKEN, OAUTH_TOKEN_SECRET,
CONSUMER_KEY, CONSUMER_SECRET)
twitter_api = twitter.Twitter(auth=auth)
# Nothing to see by displaying twitter_api except that it's now a
# defined variable
print twitter_api
<twitter.api.Twitter object at 0x00000000042DC240>
In [2]:
# The Yahoo! Where On Earth ID for the entire world is 1.
# See https://dev.twitter.com/docs/api/1.1/get/trends/place and
# http://developer.yahoo.com/geo/geoplanet/
WORLD_WOE_ID = 1
US_WOE_ID = 23424977
# Prefix ID with the underscore for query string parameterization.
# Without the underscore, the twitter package appends the ID value
# to the URL itself as a special case keyword argument.
world_trends = twitter_api.trends.place(_id=WORLD_WOE_ID)
us_trends = twitter_api.trends.place(_id=US_WOE_ID)
print world_trends
print
print us_trends
[{u'created_at': u'2016-02-03T23:20:09Z', u'trends': [{u'url': u'http://twitter.com/search?q=Valencia', u'query': u'Valencia', u'tweet_volume': 270241, u'name': u'Valencia', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23OnaDokunma', u'query': u'%23OnaDokunma', u'tweet_volume': 59961, u'name': u'#OnaDokunma', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23COAC2016S3', u'query': u'%23COAC2016S3', u'tweet_volume': 11976, u'name': u'#COAC2016S3', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23%D8%B2%D8%AF_%D8%B1%D8%B5%D9%8A%D8%AF%D9%8382', u'query': u'%23%D8%B2%D8%AF_%D8%B1%D8%B5%D9%8A%D8%AF%D9%8382', u'tweet_volume': 212294, u'name': u'#\u0632\u062f_\u0631\u0635\u064a\u062f\u064382', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%22STYDIA+IS+HAPPENING%22', u'query': u'%22STYDIA+IS+HAPPENING%22', u'tweet_volume': 28032, u'name': u'STYDIA IS HAPPENING', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23OwRangel7', u'query': u'%23OwRangel7', u'tweet_volume': 12988, u'name': u'#OwRangel7', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23ParaEl14DeFebrero', u'query': u'%23ParaEl14DeFebrero', u'tweet_volume': 72823, u'name': u'#ParaEl14DeFebrero', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%22Henrique+Almeida%22', u'query': u'%22Henrique+Almeida%22', u'tweet_volume': 14214, u'name': u'Henrique Almeida', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=D%27Alessandro', u'query': u'D%27Alessandro', u'tweet_volume': 149677, u'name': u"D'Alessandro", u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%22Normani+Kordei%22', u'query': u'%22Normani+Kordei%22', u'tweet_volume': None, u'name': u'Normani Kordei', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%22Rafael+Silva%22', u'query': u'%22Rafael+Silva%22', u'tweet_volume': None, u'name': u'Rafael Silva', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=AtenaSambando', u'query': u'AtenaSambando', u'tweet_volume': None, u'name': u'AtenaSambando', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=Bossio', u'query': u'Bossio', u'tweet_volume': 18781, u'name': u'Bossio', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%22El+Cementerio%22', u'query': u'%22El+Cementerio%22', u'tweet_volume': 17645, u'name': u'El Cementerio', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23kidscompany', u'query': u'%23kidscompany', u'tweet_volume': 10026, u'name': u'#kidscompany', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23%D8%A8%D8%B1%D8%B4%D9%84%D9%88%D9%86%D9%87_%D9%81%D8%A7%D9%84%D9%86%D8%B3%D9%8A%D8%A7', u'query': u'%23%D8%A8%D8%B1%D8%B4%D9%84%D9%88%D9%86%D9%87_%D9%81%D8%A7%D9%84%D9%86%D8%B3%D9%8A%D8%A7', u'tweet_volume': 30919, u'name': u'#\u0628\u0631\u0634\u0644\u0648\u0646\u0647_\u0641\u0627\u0644\u0646\u0633\u064a\u0627', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23SELFIEFORSEB', u'query': u'%23SELFIEFORSEB', u'tweet_volume': 32653, u'name': u'#SELFIEFORSEB', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23Gala80SC', u'query': u'%23Gala80SC', u'tweet_volume': None, u'name': u'#Gala80SC', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23chilhavisto', u'query': u'%23chilhavisto', u'tweet_volume': 14306, u'name': u'#chilhavisto', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23BertinyArevalo', u'query': u'%23BertinyArevalo', u'tweet_volume': None, u'name': u'#BertinyArevalo', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23Anlad%C4%B1mKi', u'query': u'%23Anlad%C4%B1mKi', u'tweet_volume': 10321, u'name': u'#Anlad\u0131mKi', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23LazioNapoli', u'query': u'%23LazioNapoli', u'tweet_volume': 15230, u'name': u'#LazioNapoli', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23Felps1M', u'query': u'%23Felps1M', u'tweet_volume': 17708, u'name': u'#Felps1M', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23%D8%A7%D9%84%D9%85%D9%84%D9%83_%D8%B3%D9%84%D9%85%D8%A7%D9%86_%D9%8A%D8%A8%D9%83%D9%8A', u'query': u'%23%D8%A7%D9%84%D9%85%D9%84%D9%83_%D8%B3%D9%84%D9%85%D8%A7%D9%86_%D9%8A%D8%A8%D9%83%D9%8A', u'tweet_volume': 41332, u'name': u'#\u0627\u0644\u0645\u0644\u0643_\u0633\u0644\u0645\u0627\u0646_\u064a\u0628\u0643\u064a', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23nemabandonnepas', u'query': u'%23nemabandonnepas', u'tweet_volume': 11066, u'name': u'#nemabandonnepas', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23JordiEvoleEH', u'query': u'%23JordiEvoleEH', u'tweet_volume': None, u'name': u'#JordiEvoleEH', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23PSGFCL', u'query': u'%23PSGFCL', u'tweet_volume': 27923, u'name': u'#PSGFCL', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23Troy', u'query': u'%23Troy', u'tweet_volume': None, u'name': u'#Troy', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23JuveGenoa', u'query': u'%23JuveGenoa', u'tweet_volume': 26048, u'name': u'#JuveGenoa', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23BetterWaysToElectPOTUS', u'query': u'%23BetterWaysToElectPOTUS', u'tweet_volume': 11469, u'name': u'#BetterWaysToElectPOTUS', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23QuartaDetremuraSdv', u'query': u'%23QuartaDetremuraSdv', u'tweet_volume': 35876, u'name': u'#QuartaDetremuraSdv', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23DivasNoMTVHits', u'query': u'%23DivasNoMTVHits', u'tweet_volume': None, u'name': u'#DivasNoMTVHits', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23%D9%85%D8%AC%D8%A7%D9%86%D9%8A%D9%86_%D9%85%D8%B2%D9%8A%D9%83%D8%A7_%D9%88%D9%81%D9%88%D9%84%D9%88%D8%B1%D8%B2_%D9%81%D8%A8%D8%B1%D8%A7%D9%8A%D8%B1', u'query': u'%23%D9%85%D8%AC%D8%A7%D9%86%D9%8A%D9%86_%D9%85%D8%B2%D9%8A%D9%83%D8%A7_%D9%88%D9%81%D9%88%D9%84%D9%88%D8%B1%D8%B2_%D9%81%D8%A8%D8%B1%D8%A7%D9%8A%D8%B1', u'tweet_volume': None, u'name': u'#\u0645\u062c\u0627\u0646\u064a\u0646_\u0645\u0632\u064a\u0643\u0627_\u0648\u0641\u0648\u0644\u0648\u0631\u0632_\u0641\u0628\u0631\u0627\u064a\u0631', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23MosqueVisit', u'query': u'%23MosqueVisit', u'tweet_volume': 52773, u'name': u'#MosqueVisit', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23InterChievo', u'query': u'%23InterChievo', u'tweet_volume': 12145, u'name': u'#InterChievo', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23GBBOSportRelief', u'query': u'%23GBBOSportRelief', u'tweet_volume': None, u'name': u'#GBBOSportRelief', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23DosBrosMedioMillon', u'query': u'%23DosBrosMedioMillon', u'tweet_volume': 13064, u'name': u'#DosBrosMedioMillon', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23VotaSebasti%C3%A1nVillalobos', u'query': u'%23VotaSebasti%C3%A1nVillalobos', u'tweet_volume': 155362, u'name': u'#VotaSebasti\xe1nVillalobos', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23%D9%83%D9%88%D9%86%D9%88%D8%A7_%D8%B3%D8%A8%D8%A8_%D9%81%D9%8A_%D8%B3%D8%B9%D8%A7%D8%AF%D8%AA%D9%87%D9%85', u'query': u'%23%D9%83%D9%88%D9%86%D9%88%D8%A7_%D8%B3%D8%A8%D8%A8_%D9%81%D9%8A_%D8%B3%D8%B9%D8%A7%D8%AF%D8%AA%D9%87%D9%85', u'tweet_volume': 11808, u'name': u'#\u0643\u0648\u0646\u0648\u0627_\u0633\u0628\u0628_\u0641\u064a_\u0633\u0639\u0627\u062f\u062a\u0647\u0645', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23%D8%A8%D9%82%D9%88%D9%84_%D9%83%D9%81%D8%A7%D9%8A%D9%87_%D9%84', u'query': u'%23%D8%A8%D9%82%D9%88%D9%84_%D9%83%D9%81%D8%A7%D9%8A%D9%87_%D9%84', u'tweet_volume': None, u'name': u'#\u0628\u0642\u0648\u0644_\u0643\u0641\u0627\u064a\u0647_\u0644', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23Zaferin%C5%9Eerefi', u'query': u'%23Zaferin%C5%9Eerefi', u'tweet_volume': 49987, u'name': u'#Zaferin\u015eerefi', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23WhinderssonResponde', u'query': u'%23WhinderssonResponde', u'tweet_volume': 21761, u'name': u'#WhinderssonResponde', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23rodfey', u'query': u'%23rodfey', u'tweet_volume': None, u'name': u'#rodfey', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23Trumpertantrum', u'query': u'%23Trumpertantrum', u'tweet_volume': None, u'name': u'#Trumpertantrum', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23%D9%85%D8%B9%D9%84%D9%85%D9%8A%D9%86_%D8%A7%D9%84%D8%A7%D8%B1%D8%A8%D8%B9_%D8%B9%D8%A7%D9%84%D8%B1%D8%A7%D8%AF%D9%8A%D9%88_9090', u'query': u'%23%D9%85%D8%B9%D9%84%D9%85%D9%8A%D9%86_%D8%A7%D9%84%D8%A7%D8%B1%D8%A8%D8%B9_%D8%B9%D8%A7%D9%84%D8%B1%D8%A7%D8%AF%D9%8A%D9%88_9090', u'tweet_volume': None, u'name': u'#\u0645\u0639\u0644\u0645\u064a\u0646_\u0627\u0644\u0627\u0631\u0628\u0639_\u0639\u0627\u0644\u0631\u0627\u062f\u064a\u0648_9090', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23Bachelor', u'query': u'%23Bachelor', u'tweet_volume': 13577, u'name': u'#Bachelor', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23MeBeforeYouTrailer', u'query': u'%23MeBeforeYouTrailer', u'tweet_volume': 31363, u'name': u'#MeBeforeYouTrailer', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23CombateEsCarnaval', u'query': u'%23CombateEsCarnaval', u'tweet_volume': None, u'name': u'#CombateEsCarnaval', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23livingroomsession', u'query': u'%23livingroomsession', u'tweet_volume': 21824, u'name': u'#livingroomsession', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23ZicaPSDB', u'query': u'%23ZicaPSDB', u'tweet_volume': None, u'name': u'#ZicaPSDB', u'promoted_content': None}], u'as_of': u'2016-02-03T23:24:18Z', u'locations': [{u'woeid': 1, u'name': u'Worldwide'}]}]
[{u'created_at': u'2016-02-03T23:20:09Z', u'trends': [{u'url': u'http://twitter.com/search?q=%23BetterWaysToElectPOTUS', u'query': u'%23BetterWaysToElectPOTUS', u'tweet_volume': 11469, u'name': u'#BetterWaysToElectPOTUS', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23MosqueVisit', u'query': u'%23MosqueVisit', u'tweet_volume': 52773, u'name': u'#MosqueVisit', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23Trumpertantrum', u'query': u'%23Trumpertantrum', u'tweet_volume': None, u'name': u'#Trumpertantrum', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23ThatsWhenIHeardTheSirens', u'query': u'%23ThatsWhenIHeardTheSirens', u'tweet_volume': None, u'name': u'#ThatsWhenIHeardTheSirens', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23SELFIEFORSEB', u'query': u'%23SELFIEFORSEB', u'tweet_volume': 32653, u'name': u'#SELFIEFORSEB', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%22Rick+Santorum%22', u'query': u'%22Rick+Santorum%22', u'tweet_volume': 17070, u'name': u'Rick Santorum', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=Valencia', u'query': u'Valencia', u'tweet_volume': 270241, u'name': u'Valencia', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%22Sumner+Redstone%22', u'query': u'%22Sumner+Redstone%22', u'tweet_volume': None, u'name': u'Sumner Redstone', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%22Bob+Elliott%22', u'query': u'%22Bob+Elliott%22', u'tweet_volume': None, u'name': u'Bob Elliott', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%22Shaun+King%22', u'query': u'%22Shaun+King%22', u'tweet_volume': None, u'name': u'Shaun King', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%22Jack+Jones%22', u'query': u'%22Jack+Jones%22', u'tweet_volume': None, u'name': u'Jack Jones', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%22Jonny+Gomes%22', u'query': u'%22Jonny+Gomes%22', u'tweet_volume': None, u'name': u'Jonny Gomes', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%22Future+-+In+Abundance%22', u'query': u'%22Future+-+In+Abundance%22', u'tweet_volume': None, u'name': u'Future - In Abundance', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%22Barter+6%22', u'query': u'%22Barter+6%22', u'tweet_volume': None, u'name': u'Barter 6', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%22Jack+Eaton%22', u'query': u'%22Jack+Eaton%22', u'tweet_volume': None, u'name': u'Jack Eaton', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=Joop', u'query': u'Joop', u'tweet_volume': None, u'name': u'Joop', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%22Alerta+Roja%22', u'query': u'%22Alerta+Roja%22', u'tweet_volume': None, u'name': u'Alerta Roja', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%22Charlie+Strong%22', u'query': u'%22Charlie+Strong%22', u'tweet_volume': None, u'name': u'Charlie Strong', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%22Les+Miles%22', u'query': u'%22Les+Miles%22', u'tweet_volume': None, u'name': u'Les Miles', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%22El+Cementerio%22', u'query': u'%22El+Cementerio%22', u'tweet_volume': 17645, u'name': u'El Cementerio', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=Supergirl', u'query': u'Supergirl', u'tweet_volume': 46902, u'name': u'Supergirl', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23WhenILoseIBlame', u'query': u'%23WhenILoseIBlame', u'tweet_volume': None, u'name': u'#WhenILoseIBlame', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23HillarySoProgressive', u'query': u'%23HillarySoProgressive', u'tweet_volume': None, u'name': u'#HillarySoProgressive', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23CopaDelRey', u'query': u'%23CopaDelRey', u'tweet_volume': 32144, u'name': u'#CopaDelRey', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23SuperBowlRaps', u'query': u'%23SuperBowlRaps', u'tweet_volume': None, u'name': u'#SuperBowlRaps', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23PleaseClap', u'query': u'%23PleaseClap', u'tweet_volume': None, u'name': u'#PleaseClap', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23MillennialBillOfRights', u'query': u'%23MillennialBillOfRights', u'tweet_volume': 20482, u'name': u'#MillennialBillOfRights', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23livingroomsession', u'query': u'%23livingroomsession', u'tweet_volume': 21824, u'name': u'#livingroomsession', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23DownloadThisIsNotTheAlbum', u'query': u'%23DownloadThisIsNotTheAlbum', u'tweet_volume': None, u'name': u'#DownloadThisIsNotTheAlbum', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23NGWSD', u'query': u'%23NGWSD', u'tweet_volume': 11372, u'name': u'#NGWSD', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23BlueSteelSelfie', u'query': u'%23BlueSteelSelfie', u'tweet_volume': None, u'name': u'#BlueSteelSelfie', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23Pit2Pub', u'query': u'%23Pit2Pub', u'tweet_volume': None, u'name': u'#Pit2Pub', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23FreshFlavors', u'query': u'%23FreshFlavors', u'tweet_volume': None, u'name': u'#FreshFlavors', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23MyWhiteCoworker', u'query': u'%23MyWhiteCoworker', u'tweet_volume': None, u'name': u'#MyWhiteCoworker', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23AskLinda', u'query': u'%23AskLinda', u'tweet_volume': None, u'name': u'#AskLinda', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23AdnanSyed', u'query': u'%23AdnanSyed', u'tweet_volume': None, u'name': u'#AdnanSyed', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23Ask5SOS', u'query': u'%23Ask5SOS', u'tweet_volume': None, u'name': u'#Ask5SOS', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23WineWednesday', u'query': u'%23WineWednesday', u'tweet_volume': None, u'name': u'#WineWednesday', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23UpfrontSummit', u'query': u'%23UpfrontSummit', u'tweet_volume': None, u'name': u'#UpfrontSummit', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23ShawolSelcaDay', u'query': u'%23ShawolSelcaDay', u'tweet_volume': None, u'name': u'#ShawolSelcaDay', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23UberPUPPIES', u'query': u'%23UberPUPPIES', u'tweet_volume': None, u'name': u'#UberPUPPIES', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23foodiecelebrities', u'query': u'%23foodiecelebrities', u'tweet_volume': None, u'name': u'#foodiecelebrities', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23NewBlue', u'query': u'%23NewBlue', u'tweet_volume': 20246, u'name': u'#NewBlue', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23BeingBlackatLSU', u'query': u'%23BeingBlackatLSU', u'tweet_volume': None, u'name': u'#BeingBlackatLSU', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23kidscompany', u'query': u'%23kidscompany', u'tweet_volume': 10026, u'name': u'#kidscompany', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23IOUchat', u'query': u'%23IOUchat', u'tweet_volume': None, u'name': u'#IOUchat', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23ObamaMuslimTVShow', u'query': u'%23ObamaMuslimTVShow', u'tweet_volume': None, u'name': u'#ObamaMuslimTVShow', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23ImWithAstrid', u'query': u'%23ImWithAstrid', u'tweet_volume': None, u'name': u'#ImWithAstrid', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23ViscaBarca', u'query': u'%23ViscaBarca', u'tweet_volume': None, u'name': u'#ViscaBarca', u'promoted_content': None}, {u'url': u'http://twitter.com/search?q=%23askwillow', u'query': u'%23askwillow', u'tweet_volume': None, u'name': u'#askwillow', u'promoted_content': None}], u'as_of': u'2016-02-03T23:24:18Z', u'locations': [{u'woeid': 23424977, u'name': u'United States'}]}]
In [20]:
data= json.dumps(us_trends, indent=1)
file = open('foo.txt','w')
file.write(data)
file.close()
In [41]:
file = open('foo.txt','r')
foo = file.read()
d = json.loads(foo)
print len(d)
print d[0].keys()
print len(d[0]['trends'])
print d[0]['trends'][27]
1
[u'locations', u'created_at', u'trends', u'as_of']
50
{u'url': u'http://twitter.com/search?q=%23livingroomsession', u'query': u'%23livingroomsession', u'tweet_volume': 21824, u'name': u'#livingroomsession', u'promoted_content': None}
In [37]:
a= [1,2,3,4]
print a
print a[0]
[1, 2, 3, 4]
1
In [40]:
b={'randy':47,'tyler':'cool'}
print b['randy']
print b.keys()
47
['tyler', 'randy']
In [3]:
import json
#print json.dumps(world_trends, indent=1)
#print
print json.dumps(us_trends, indent=1)
[
{
"created_at": "2016-02-03T23:20:09Z",
"trends": [
{
"url": "http://twitter.com/search?q=%23BetterWaysToElectPOTUS",
"query": "%23BetterWaysToElectPOTUS",
"tweet_volume": 11469,
"name": "#BetterWaysToElectPOTUS",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23MosqueVisit",
"query": "%23MosqueVisit",
"tweet_volume": 52773,
"name": "#MosqueVisit",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23Trumpertantrum",
"query": "%23Trumpertantrum",
"tweet_volume": null,
"name": "#Trumpertantrum",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23ThatsWhenIHeardTheSirens",
"query": "%23ThatsWhenIHeardTheSirens",
"tweet_volume": null,
"name": "#ThatsWhenIHeardTheSirens",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23SELFIEFORSEB",
"query": "%23SELFIEFORSEB",
"tweet_volume": 32653,
"name": "#SELFIEFORSEB",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%22Rick+Santorum%22",
"query": "%22Rick+Santorum%22",
"tweet_volume": 17070,
"name": "Rick Santorum",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=Valencia",
"query": "Valencia",
"tweet_volume": 270241,
"name": "Valencia",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%22Sumner+Redstone%22",
"query": "%22Sumner+Redstone%22",
"tweet_volume": null,
"name": "Sumner Redstone",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%22Bob+Elliott%22",
"query": "%22Bob+Elliott%22",
"tweet_volume": null,
"name": "Bob Elliott",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%22Shaun+King%22",
"query": "%22Shaun+King%22",
"tweet_volume": null,
"name": "Shaun King",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%22Jack+Jones%22",
"query": "%22Jack+Jones%22",
"tweet_volume": null,
"name": "Jack Jones",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%22Jonny+Gomes%22",
"query": "%22Jonny+Gomes%22",
"tweet_volume": null,
"name": "Jonny Gomes",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%22Future+-+In+Abundance%22",
"query": "%22Future+-+In+Abundance%22",
"tweet_volume": null,
"name": "Future - In Abundance",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%22Barter+6%22",
"query": "%22Barter+6%22",
"tweet_volume": null,
"name": "Barter 6",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%22Jack+Eaton%22",
"query": "%22Jack+Eaton%22",
"tweet_volume": null,
"name": "Jack Eaton",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=Joop",
"query": "Joop",
"tweet_volume": null,
"name": "Joop",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%22Alerta+Roja%22",
"query": "%22Alerta+Roja%22",
"tweet_volume": null,
"name": "Alerta Roja",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%22Charlie+Strong%22",
"query": "%22Charlie+Strong%22",
"tweet_volume": null,
"name": "Charlie Strong",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%22Les+Miles%22",
"query": "%22Les+Miles%22",
"tweet_volume": null,
"name": "Les Miles",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%22El+Cementerio%22",
"query": "%22El+Cementerio%22",
"tweet_volume": 17645,
"name": "El Cementerio",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=Supergirl",
"query": "Supergirl",
"tweet_volume": 46902,
"name": "Supergirl",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23WhenILoseIBlame",
"query": "%23WhenILoseIBlame",
"tweet_volume": null,
"name": "#WhenILoseIBlame",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23HillarySoProgressive",
"query": "%23HillarySoProgressive",
"tweet_volume": null,
"name": "#HillarySoProgressive",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23CopaDelRey",
"query": "%23CopaDelRey",
"tweet_volume": 32144,
"name": "#CopaDelRey",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23SuperBowlRaps",
"query": "%23SuperBowlRaps",
"tweet_volume": null,
"name": "#SuperBowlRaps",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23PleaseClap",
"query": "%23PleaseClap",
"tweet_volume": null,
"name": "#PleaseClap",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23MillennialBillOfRights",
"query": "%23MillennialBillOfRights",
"tweet_volume": 20482,
"name": "#MillennialBillOfRights",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23livingroomsession",
"query": "%23livingroomsession",
"tweet_volume": 21824,
"name": "#livingroomsession",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23DownloadThisIsNotTheAlbum",
"query": "%23DownloadThisIsNotTheAlbum",
"tweet_volume": null,
"name": "#DownloadThisIsNotTheAlbum",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23NGWSD",
"query": "%23NGWSD",
"tweet_volume": 11372,
"name": "#NGWSD",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23BlueSteelSelfie",
"query": "%23BlueSteelSelfie",
"tweet_volume": null,
"name": "#BlueSteelSelfie",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23Pit2Pub",
"query": "%23Pit2Pub",
"tweet_volume": null,
"name": "#Pit2Pub",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23FreshFlavors",
"query": "%23FreshFlavors",
"tweet_volume": null,
"name": "#FreshFlavors",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23MyWhiteCoworker",
"query": "%23MyWhiteCoworker",
"tweet_volume": null,
"name": "#MyWhiteCoworker",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23AskLinda",
"query": "%23AskLinda",
"tweet_volume": null,
"name": "#AskLinda",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23AdnanSyed",
"query": "%23AdnanSyed",
"tweet_volume": null,
"name": "#AdnanSyed",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23Ask5SOS",
"query": "%23Ask5SOS",
"tweet_volume": null,
"name": "#Ask5SOS",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23WineWednesday",
"query": "%23WineWednesday",
"tweet_volume": null,
"name": "#WineWednesday",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23UpfrontSummit",
"query": "%23UpfrontSummit",
"tweet_volume": null,
"name": "#UpfrontSummit",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23ShawolSelcaDay",
"query": "%23ShawolSelcaDay",
"tweet_volume": null,
"name": "#ShawolSelcaDay",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23UberPUPPIES",
"query": "%23UberPUPPIES",
"tweet_volume": null,
"name": "#UberPUPPIES",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23foodiecelebrities",
"query": "%23foodiecelebrities",
"tweet_volume": null,
"name": "#foodiecelebrities",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23NewBlue",
"query": "%23NewBlue",
"tweet_volume": 20246,
"name": "#NewBlue",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23BeingBlackatLSU",
"query": "%23BeingBlackatLSU",
"tweet_volume": null,
"name": "#BeingBlackatLSU",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23kidscompany",
"query": "%23kidscompany",
"tweet_volume": 10026,
"name": "#kidscompany",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23IOUchat",
"query": "%23IOUchat",
"tweet_volume": null,
"name": "#IOUchat",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23ObamaMuslimTVShow",
"query": "%23ObamaMuslimTVShow",
"tweet_volume": null,
"name": "#ObamaMuslimTVShow",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23ImWithAstrid",
"query": "%23ImWithAstrid",
"tweet_volume": null,
"name": "#ImWithAstrid",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23ViscaBarca",
"query": "%23ViscaBarca",
"tweet_volume": null,
"name": "#ViscaBarca",
"promoted_content": null
},
{
"url": "http://twitter.com/search?q=%23askwillow",
"query": "%23askwillow",
"tweet_volume": null,
"name": "#askwillow",
"promoted_content": null
}
],
"as_of": "2016-02-03T23:24:18Z",
"locations": [
{
"woeid": 23424977,
"name": "United States"
}
]
}
]
In [4]:
world_trends_set = set([trend['name']
for trend in world_trends[0]['trends']])
us_trends_set = set([trend['name']
for trend in us_trends[0]['trends']])
common_trends = world_trends_set.intersection(us_trends_set)
print common_trends
set([u'#Trumpertantrum', u'#BetterWaysToElectPOTUS', u'#kidscompany', u'#SELFIEFORSEB', u'El Cementerio', u'#MosqueVisit', u'#livingroomsession', u'Valencia'])
In [5]:
world_trends[0]['trends'][0]['name']
Out[5]:
u'Valencia'
In [6]:
world_trends_set
Out[6]:
{u'#Anlad\u0131mKi',
u'#Bachelor',
u'#BertinyArevalo',
u'#BetterWaysToElectPOTUS',
u'#COAC2016S3',
u'#CombateEsCarnaval',
u'#DivasNoMTVHits',
u'#DosBrosMedioMillon',
u'#Felps1M',
u'#GBBOSportRelief',
u'#Gala80SC',
u'#InterChievo',
u'#JordiEvoleEH',
u'#JuveGenoa',
u'#LazioNapoli',
u'#MeBeforeYouTrailer',
u'#MosqueVisit',
u'#OnaDokunma',
u'#OwRangel7',
u'#PSGFCL',
u'#ParaEl14DeFebrero',
u'#QuartaDetremuraSdv',
u'#SELFIEFORSEB',
u'#Troy',
u'#Trumpertantrum',
u'#VotaSebasti\xe1nVillalobos',
u'#WhinderssonResponde',
u'#Zaferin\u015eerefi',
u'#ZicaPSDB',
u'#chilhavisto',
u'#kidscompany',
u'#livingroomsession',
u'#nemabandonnepas',
u'#rodfey',
u'#\u0627\u0644\u0645\u0644\u0643_\u0633\u0644\u0645\u0627\u0646_\u064a\u0628\u0643\u064a',
u'#\u0628\u0631\u0634\u0644\u0648\u0646\u0647_\u0641\u0627\u0644\u0646\u0633\u064a\u0627',
u'#\u0628\u0642\u0648\u0644_\u0643\u0641\u0627\u064a\u0647_\u0644',
u'#\u0632\u062f_\u0631\u0635\u064a\u062f\u064382',
u'#\u0643\u0648\u0646\u0648\u0627_\u0633\u0628\u0628_\u0641\u064a_\u0633\u0639\u0627\u062f\u062a\u0647\u0645',
u'#\u0645\u062c\u0627\u0646\u064a\u0646_\u0645\u0632\u064a\u0643\u0627_\u0648\u0641\u0648\u0644\u0648\u0631\u0632_\u0641\u0628\u0631\u0627\u064a\u0631',
u'#\u0645\u0639\u0644\u0645\u064a\u0646_\u0627\u0644\u0627\u0631\u0628\u0639_\u0639\u0627\u0644\u0631\u0627\u062f\u064a\u0648_9090',
u'AtenaSambando',
u'Bossio',
u"D'Alessandro",
u'El Cementerio',
u'Henrique Almeida',
u'Normani Kordei',
u'Rafael Silva',
u'STYDIA IS HAPPENING',
u'Valencia'}
In [16]:
print u'#\u0645\u0639\u0644\u0645\u064a\u0646_\u0627\u0644\u0627\u0631\u0628\u0639_\u0639\u0627\u0644\u0631\u0627\u062f\u064a\u0648_9090'
#معلمين_الاربع_عالراديو_9090
In [15]:
print u'#\u0628\u0642\u0648\u0644_\u0643\u0641\u0627\u064a\u0647_\u0644'
#بقول_كفايه_ل
In [7]:
# Set this variable to a trending topic,
# or anything else for that matter. The example query below
# was a trending topic when this content was being developed
# and is used throughout the remainder of this chapter.
import json
q = '#Kanye'
count = 1000
# See https://dev.twitter.com/docs/api/1.1/get/search/tweets
search_results = twitter_api.search.tweets(q=q, count=count)
statuses = search_results['statuses']
# Iterate through 5 more batches of results by following the cursor
for _ in range(5):
print "Length of statuses", len(statuses)
try:
next_results = search_results['search_metadata']['next_results']
except KeyError, e: # No more results when next_results doesn't exist
break
# Create a dictionary from next_results, which has the following form:
# ?max_id=313519052523986943&q=NCAA&include_entities=1
kwargs = dict([ kv.split('=') for kv in next_results[1:].split("&") ])
search_results = twitter_api.search.tweets(**kwargs)
statuses += search_results['statuses']
# Show one sample search result by slicing the list...
print json.dumps(statuses, indent=4)
Length of statuses 100
Length of statuses 200
Length of statuses 200
[
{
"contributors": null,
"truncated": false,
"text": "Wiz Khalifa Reveals How Kanye West Apologized for Claiming He &quot;Owned&quot; His Son - Celebuzz #kanye https://t.co/HRKWm8FqKR",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695023481583443968,
"favorite_count": 0,
"source": "<a href=\"http://dragplus.com\" rel=\"nofollow\">DragPlus</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
107,
113
],
"text": "kanye"
}
],
"urls": [
{
"url": "https://t.co/HRKWm8FqKR",
"indices": [
114,
137
],
"expanded_url": "http://dragplus.com/post/id/33470770",
"display_url": "dragplus.com/post/id/334707\u2026"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695023481583443968",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 1637501281,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000224189337/94e7740e820fbe6ab7236e7c1b627565_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/z9rtlpBA4p",
"indices": [
0,
22
],
"expanded_url": "http://dragplus.com/browse/twitter",
"display_url": "dragplus.com/browse/twitter"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 2356,
"profile_sidebar_border_color": "C0DEED",
"id_str": "1637501281",
"profile_background_color": "C0DEED",
"listed_count": 56,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 16049,
"description": "Twitter News, tip and tricks",
"friends_count": 1870,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/378800000224189337/94e7740e820fbe6ab7236e7c1b627565_normal.png",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "Twit__agent",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 0,
"name": "Twit Agent",
"notifications": false,
"url": "http://t.co/z9rtlpBA4p",
"created_at": "Thu Aug 01 08:27:41 +0000 2013",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 23:18:05 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "(Buzzfeed):11 #Reasons Why #Kanye West Shouldn't Be So Sad About His Height : Hey Kanye,.. https://t.co/Oskuh05eAW https://t.co/gp0Xf1iM1O",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695023020977446912,
"favorite_count": 0,
"source": "<a href=\"http://www.latestcanada.com\" rel=\"nofollow\">Latestcanada.com To Twitter</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
14,
22
],
"text": "Reasons"
},
{
"indices": [
27,
33
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/Oskuh05eAW",
"indices": [
91,
114
],
"expanded_url": "http://www.latestcanada.com/article/2654041509/reasons-kanye-west-shouldn-sad-height",
"display_url": "latestcanada.com/article/265404\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/latestcanada/status/695023020977446912/photo/1",
"display_url": "pic.twitter.com/gp0Xf1iM1O",
"url": "https://t.co/gp0Xf1iM1O",
"media_url_https": "https://pbs.twimg.com/media/CaU3wUVUkAAVPXg.jpg",
"id_str": "695023020729995264",
"sizes": {
"large": {
"h": 248,
"resize": "fit",
"w": 625
},
"small": {
"h": 134,
"resize": "fit",
"w": 340
},
"medium": {
"h": 238,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
115,
138
],
"type": "photo",
"id": 695023020729995264,
"media_url": "http://pbs.twimg.com/media/CaU3wUVUkAAVPXg.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695023020977446912",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 3794670447,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/673162669654962176/22n23zYV_normal.png",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/Lzs1t7QHt0",
"indices": [
0,
22
],
"expanded_url": "http://www.latestcanada.com",
"display_url": "latestcanada.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 229,
"profile_sidebar_border_color": "000000",
"id_str": "3794670447",
"profile_background_color": "000000",
"listed_count": 245,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 49541,
"description": "",
"friends_count": 33,
"location": "",
"profile_link_color": "FF0000",
"profile_image_url": "http://pbs.twimg.com/profile_images/673162669654962176/22n23zYV_normal.png",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "latestcanada",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 0,
"name": "Latestcanada",
"notifications": false,
"url": "http://t.co/Lzs1t7QHt0",
"created_at": "Sun Sep 27 16:47:51 +0000 2015",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 23:16:15 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Everyone vote on my poll because it's my first time doing one. #Kanye #Wiz #Poll #Pinned",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695022592856571905,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
63,
69
],
"text": "Kanye"
},
{
"indices": [
70,
74
],
"text": "Wiz"
},
{
"indices": [
75,
80
],
"text": "Poll"
},
{
"indices": [
81,
88
],
"text": "Pinned"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695022592856571905",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 1378474202,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/693987546716618754/g3nQQ9d6_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/FXy7sT2G4Z",
"indices": [
0,
23
],
"expanded_url": "http://www.instagram.com/sammifurtado",
"display_url": "instagram.com/sammifurtado"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 284,
"profile_sidebar_border_color": "C0DEED",
"id_str": "1378474202",
"profile_background_color": "C0DEED",
"listed_count": 1,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 3970,
"description": "21 | Jordan Reis | Phlebotomist",
"friends_count": 353,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/693987546716618754/g3nQQ9d6_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1378474202/1454541715",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "sammithemermaid",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 913,
"name": "sAmmi",
"notifications": false,
"url": "https://t.co/FXy7sT2G4Z",
"created_at": "Thu Apr 25 02:30:15 +0000 2013",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 23:14:33 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Just left the #Kanye Yeezy #NYFW show casting! Took 2 1/2 hrs to get thru the line but I made it! Peep #BTS of it on my #Snapchat at LirisC",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695022423628980224,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
14,
20
],
"text": "Kanye"
},
{
"indices": [
27,
32
],
"text": "NYFW"
},
{
"indices": [
103,
107
],
"text": "BTS"
},
{
"indices": [
120,
129
],
"text": "Snapchat"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695022423628980224",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 27757064,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/19655707/pub3.jpg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/678299686067924992/3a_TligG_normal.jpg",
"profile_sidebar_fill_color": "F3F3F3",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/b1dmzsjiLi",
"indices": [
0,
23
],
"expanded_url": "http://LirisC.com",
"display_url": "LirisC.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 12557,
"profile_sidebar_border_color": "DFDFDF",
"id_str": "27757064",
"profile_background_color": "EBEBEB",
"listed_count": 271,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 136351,
"description": "model/actress/host/Sportsnista/foodie/lover of life/Libra/LoveAddict&yes I was inThe Best Man!.My drive is MEAN&2KnowMeIs2LoveME! TO BOOK: BookLiris@aol.com",
"friends_count": 1669,
"location": "New York",
"profile_link_color": "990000",
"profile_image_url": "http://pbs.twimg.com/profile_images/678299686067924992/3a_TligG_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/27757064/1392986042",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/19655707/pub3.jpg",
"screen_name": "LirisC",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 2210,
"name": "Liris Crosse",
"notifications": false,
"url": "https://t.co/b1dmzsjiLi",
"created_at": "Mon Mar 30 23:14:27 +0000 2009",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 23:13:53 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "\ud83d\ude4f\ud83c\udffe 2016 \ud83d\ude4f\ud83c\udffe #Kanye #Drake #FrankOcean https://t.co/Q8VFoYjPMh",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695021249215361024,
"favorite_count": 0,
"source": "<a href=\"http://instagram.com\" rel=\"nofollow\">Instagram</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
44,
50
],
"text": "Kanye"
},
{
"indices": [
51,
57
],
"text": "Drake"
},
{
"indices": [
58,
69
],
"text": "FrankOcean"
}
],
"urls": [
{
"url": "https://t.co/Q8VFoYjPMh",
"indices": [
70,
93
],
"expanded_url": "https://www.instagram.com/p/BBV47gQADk_/",
"display_url": "instagram.com/p/BBV47gQADk_/"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695021249215361024",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 24092572,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/442380362/20120226_214542_568.gif",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/685715694353166336/0Mo80maZ_normal.jpg",
"profile_sidebar_fill_color": "FFFFFF",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/fpHkWLo7as",
"indices": [
0,
23
],
"expanded_url": "http://sarahbadarah.tumblr.com/",
"display_url": "sarahbadarah.tumblr.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 283,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "24092572",
"profile_background_color": "FFFFFF",
"listed_count": 3,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 16367,
"description": "I solemnly swear that I am up to no good",
"friends_count": 243,
"location": "DC baby",
"profile_link_color": "04D6D6",
"profile_image_url": "http://pbs.twimg.com/profile_images/685715694353166336/0Mo80maZ_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/24092572/1423846930",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/442380362/20120226_214542_568.gif",
"screen_name": "SPFRaines",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 4117,
"name": "\u2662Sarahhhhh\u2662",
"notifications": false,
"url": "https://t.co/fpHkWLo7as",
"created_at": "Fri Mar 13 01:13:04 +0000 2009",
"contributors_enabled": false,
"time_zone": "Quito",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 23:09:13 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Great Tat Right? Not about #Kanye https://t.co/o4rgFqXbvj",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695019738557190144,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
27,
33
],
"text": "Kanye"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/danadick981/status/695019738557190144/photo/1",
"display_url": "pic.twitter.com/o4rgFqXbvj",
"url": "https://t.co/o4rgFqXbvj",
"media_url_https": "https://pbs.twimg.com/media/CaU0w9yVAAAF2SQ.jpg",
"id_str": "695019733322629120",
"sizes": {
"large": {
"h": 465,
"resize": "fit",
"w": 311
},
"small": {
"h": 465,
"resize": "fit",
"w": 311
},
"medium": {
"h": 465,
"resize": "fit",
"w": 311
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
34,
57
],
"type": "photo",
"id": 695019733322629120,
"media_url": "http://pbs.twimg.com/media/CaU0w9yVAAAF2SQ.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695019738557190144",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2918463273,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/693844099938525185/D8iNrTl2_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 362,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2918463273",
"profile_background_color": "C0DEED",
"listed_count": 4,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 2295,
"description": "A weasel nose a weasel why ya think im following ya Go on press that follow Now u know u Dick~HUMOR",
"friends_count": 870,
"location": "Follow us on InstagrM",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/693844099938525185/D8iNrTl2_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2918463273/1454043091",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "danadick981",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 44,
"name": "Dana DICK Hardly",
"notifications": false,
"url": null,
"created_at": "Fri Dec 12 21:39:52 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 23:03:13 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @TheRapperGuide: #drake #jcole #coleworld #kanyewest #kanye #yeezy #yeezys\n\nhttps://t.co/h3KH4Nebts https://t.co/RNC4oX7hRi",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695016174573248513,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 3766513995,
"indices": [
3,
18
],
"id_str": "3766513995",
"screen_name": "TheRapperGuide",
"name": "SmartRapper(dot)com"
}
],
"hashtags": [
{
"indices": [
20,
26
],
"text": "drake"
},
{
"indices": [
27,
33
],
"text": "jcole"
},
{
"indices": [
34,
44
],
"text": "coleworld"
},
{
"indices": [
45,
55
],
"text": "kanyewest"
},
{
"indices": [
56,
62
],
"text": "kanye"
},
{
"indices": [
63,
69
],
"text": "yeezy"
},
{
"indices": [
70,
77
],
"text": "yeezys"
}
],
"urls": [
{
"url": "https://t.co/h3KH4Nebts",
"indices": [
79,
102
],
"expanded_url": "http://www.SmartRapper.com/level5part2/?wy0",
"display_url": "SmartRapper.com/level5part2/?w\u2026"
}
],
"media": [
{
"source_user_id": 3766513995,
"source_status_id_str": "694504806401077248",
"expanded_url": "http://twitter.com/TheRapperGuide/status/694504806401077248/photo/1",
"display_url": "pic.twitter.com/RNC4oX7hRi",
"url": "https://t.co/RNC4oX7hRi",
"media_url_https": "https://pbs.twimg.com/media/CaNgcL5WkAAMkek.jpg",
"source_user_id_str": "3766513995",
"source_status_id": 694504806401077248,
"id_str": "694504804891136000",
"sizes": {
"large": {
"h": 507,
"resize": "fit",
"w": 507
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 507,
"resize": "fit",
"w": 507
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
103,
126
],
"type": "photo",
"id": 694504804891136000,
"media_url": "http://pbs.twimg.com/media/CaNgcL5WkAAMkek.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "695016174573248513",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "#drake #jcole #coleworld #kanyewest #kanye #yeezy #yeezys\n\nhttps://t.co/h3KH4Nebts https://t.co/RNC4oX7hRi",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694504806401077248,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "drake"
},
{
"indices": [
7,
13
],
"text": "jcole"
},
{
"indices": [
14,
24
],
"text": "coleworld"
},
{
"indices": [
25,
35
],
"text": "kanyewest"
},
{
"indices": [
36,
42
],
"text": "kanye"
},
{
"indices": [
43,
49
],
"text": "yeezy"
},
{
"indices": [
50,
57
],
"text": "yeezys"
}
],
"urls": [
{
"url": "https://t.co/h3KH4Nebts",
"indices": [
59,
82
],
"expanded_url": "http://www.SmartRapper.com/level5part2/?wy0",
"display_url": "SmartRapper.com/level5part2/?w\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/TheRapperGuide/status/694504806401077248/photo/1",
"display_url": "pic.twitter.com/RNC4oX7hRi",
"url": "https://t.co/RNC4oX7hRi",
"media_url_https": "https://pbs.twimg.com/media/CaNgcL5WkAAMkek.jpg",
"id_str": "694504804891136000",
"sizes": {
"large": {
"h": 507,
"resize": "fit",
"w": 507
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 507,
"resize": "fit",
"w": 507
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
83,
106
],
"type": "photo",
"id": 694504804891136000,
"media_url": "http://pbs.twimg.com/media/CaNgcL5WkAAMkek.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "694504806401077248",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3766513995,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/649719416553213956/Z8249YcF.jpg",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/667575474319523842/Vq3rWjkB_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/PluhlNfLFB",
"indices": [
0,
23
],
"expanded_url": "http://SmartRapper.com",
"display_url": "SmartRapper.com"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/PluhlNfLFB",
"indices": [
20,
43
],
"expanded_url": "http://SmartRapper.com",
"display_url": "SmartRapper.com"
}
]
}
},
"followers_count": 10741,
"profile_sidebar_border_color": "000000",
"id_str": "3766513995",
"profile_background_color": "FA743E",
"listed_count": 46,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 3340,
"description": "Unlike other sites, https://t.co/PluhlNfLFB was created by a self made artist just like you | With 14,000,000+ YouTube views and major artist writing credits",
"friends_count": 2366,
"location": "Los Angeles, CA",
"profile_link_color": "000000",
"profile_image_url": "http://pbs.twimg.com/profile_images/667575474319523842/Vq3rWjkB_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3766513995/1444269518",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/649719416553213956/Z8249YcF.jpg",
"screen_name": "TheRapperGuide",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 5897,
"name": "SmartRapper(dot)com",
"notifications": false,
"url": "https://t.co/PluhlNfLFB",
"created_at": "Fri Sep 25 02:45:24 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Tue Feb 02 12:57:03 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": true,
"id": 2416863522,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 33,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2416863522",
"profile_background_color": "C0DEED",
"listed_count": 30,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 3512,
"description": "",
"friends_count": 63,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "puvymewybaqy",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 2870,
"name": "Joleen Featenby",
"notifications": false,
"url": null,
"created_at": "Sat Mar 29 03:35:50 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 22:49:03 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @UKGrime: This is a sad time for #Kanye https://t.co/K8LqgObJPc",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695015812160229376,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 383665643,
"indices": [
3,
11
],
"id_str": "383665643",
"screen_name": "UKGrime",
"name": "UKGrime"
}
],
"hashtags": [
{
"indices": [
36,
42
],
"text": "Kanye"
}
],
"urls": [],
"media": [
{
"source_user_id": 154297611,
"source_status_id_str": "692875189592260612",
"expanded_url": "http://twitter.com/DeMarko_Gage/status/692875189592260612/video/1",
"display_url": "pic.twitter.com/K8LqgObJPc",
"url": "https://t.co/K8LqgObJPc",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692874694911918081/pu/img/LplTkjPs3kb_6aLs.jpg",
"source_user_id_str": "154297611",
"source_status_id": 692875189592260612,
"id_str": "692874694911918081",
"sizes": {
"small": {
"h": 604,
"resize": "fit",
"w": 340
},
"large": {
"h": 1280,
"resize": "fit",
"w": 720
},
"medium": {
"h": 1067,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
43,
66
],
"type": "photo",
"id": 692874694911918081,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692874694911918081/pu/img/LplTkjPs3kb_6aLs.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 321,
"id_str": "695015812160229376",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "This is a sad time for #Kanye https://t.co/K8LqgObJPc",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 693401264953122816,
"favorite_count": 351,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
23,
29
],
"text": "Kanye"
}
],
"urls": [],
"media": [
{
"source_user_id": 154297611,
"source_status_id_str": "692875189592260612",
"expanded_url": "http://twitter.com/DeMarko_Gage/status/692875189592260612/video/1",
"display_url": "pic.twitter.com/K8LqgObJPc",
"url": "https://t.co/K8LqgObJPc",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692874694911918081/pu/img/LplTkjPs3kb_6aLs.jpg",
"source_user_id_str": "154297611",
"source_status_id": 692875189592260612,
"id_str": "692874694911918081",
"sizes": {
"small": {
"h": 604,
"resize": "fit",
"w": 340
},
"large": {
"h": 1280,
"resize": "fit",
"w": 720
},
"medium": {
"h": 1067,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
30,
53
],
"type": "photo",
"id": 692874694911918081,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692874694911918081/pu/img/LplTkjPs3kb_6aLs.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 321,
"id_str": "693401264953122816",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 383665643,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/570424007292231680/-EWI3ykO.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/693400005516890112/1ZyBURtr_normal.jpg",
"profile_sidebar_fill_color": "DDFFCC",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/MkdiWXF7dG",
"indices": [
0,
23
],
"expanded_url": "http://UKGrime.com",
"display_url": "UKGrime.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 24228,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "383665643",
"profile_background_color": "000000",
"listed_count": 64,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 17498,
"description": "The new platform for UK Grime Music - Creators of the #UKGrimeCypher All enquiries - Contact@UKGrime.com Australian Twitter @UKGrimeOz",
"friends_count": 3031,
"location": "United Kingdom",
"profile_link_color": "ABB8C2",
"profile_image_url": "http://pbs.twimg.com/profile_images/693400005516890112/1ZyBURtr_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/383665643/1454118374",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/570424007292231680/-EWI3ykO.jpeg",
"screen_name": "UKGrime",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 33131,
"name": "UKGrime",
"notifications": false,
"url": "https://t.co/MkdiWXF7dG",
"created_at": "Sun Oct 02 08:50:34 +0000 2011",
"contributors_enabled": false,
"time_zone": "London",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Sat Jan 30 11:51:58 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 464355444,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/429504146/edsheeran618.jpg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/527927094563844096/hHZkSgSz_normal.jpeg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 535,
"profile_sidebar_border_color": "C0DEED",
"id_str": "464355444",
"profile_background_color": "FF6699",
"listed_count": 2,
"is_translation_enabled": false,
"utc_offset": -39600,
"statuses_count": 5570,
"description": "18",
"friends_count": 882,
"location": "",
"profile_link_color": "B40B43",
"profile_image_url": "http://pbs.twimg.com/profile_images/527927094563844096/hHZkSgSz_normal.jpeg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/464355444/1393954889",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/429504146/edsheeran618.jpg",
"screen_name": "kayjay_96_",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 381,
"name": "W\u2693",
"notifications": false,
"url": null,
"created_at": "Sun Jan 15 04:19:03 +0000 2012",
"contributors_enabled": false,
"time_zone": "International Date Line West",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 22:47:37 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#Sporting #Nike-Air-#Yeezy-II-2-NRG-#Kanye-WEST-BLACK SOLAR RED PINK OCTOBER\u2026 https://t.co/PqbyGR8vbP #Top #Shoes https://t.co/vvCwuSrlts",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695015439127040000,
"favorite_count": 0,
"source": "<a href=\"http://dlvr.it\" rel=\"nofollow\">dlvr.it</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
9
],
"text": "Sporting"
},
{
"indices": [
10,
15
],
"text": "Nike"
},
{
"indices": [
20,
26
],
"text": "Yeezy"
},
{
"indices": [
36,
42
],
"text": "Kanye"
},
{
"indices": [
102,
106
],
"text": "Top"
},
{
"indices": [
107,
113
],
"text": "Shoes"
}
],
"urls": [
{
"url": "https://t.co/PqbyGR8vbP",
"indices": [
78,
101
],
"expanded_url": "http://dlvr.it/KPpMtz",
"display_url": "dlvr.it/KPpMtz"
}
],
"media": [
{
"expanded_url": "http://twitter.com/NikeAirMall/status/695015439127040000/photo/1",
"display_url": "pic.twitter.com/vvCwuSrlts",
"url": "https://t.co/vvCwuSrlts",
"media_url_https": "https://pbs.twimg.com/media/CaUw3AKVAAEUkxp.jpg",
"id_str": "695015438992867329",
"sizes": {
"small": {
"h": 226,
"resize": "fit",
"w": 340
},
"large": {
"h": 266,
"resize": "fit",
"w": 400
},
"medium": {
"h": 266,
"resize": "fit",
"w": 400
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
114,
137
],
"type": "photo",
"id": 695015438992867329,
"media_url": "http://pbs.twimg.com/media/CaUw3AKVAAEUkxp.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695015439127040000",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 4680894614,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/682405004540420096/7RSG4jFw.jpg",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/682391376709877760/3jyZS5d5_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/FCOOpYwG95",
"indices": [
0,
23
],
"expanded_url": "http://Dlvr.it/D8Cvnz",
"display_url": "Dlvr.it/D8Cvnz"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 48,
"profile_sidebar_border_color": "000000",
"id_str": "4680894614",
"profile_background_color": "C0DEED",
"listed_count": 19,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 17359,
"description": "#Nike Air Series #Shoes #AirMax #AirForce #AirJordan... #Deals #Bargains #Forsale #onsale #Discount #Bestseller #Buy #BuyNow #Shopping #Mall #TopSeller #Auction",
"friends_count": 74,
"location": "",
"profile_link_color": "8B0000",
"profile_image_url": "http://pbs.twimg.com/profile_images/682391376709877760/3jyZS5d5_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/4680894614/1451529932",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/682405004540420096/7RSG4jFw.jpg",
"screen_name": "NikeAirMall",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 13,
"name": "Nike Air Mall",
"notifications": false,
"url": "https://t.co/FCOOpYwG95",
"created_at": "Thu Dec 31 02:08:23 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 22:46:08 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#drake #jcole #coleworld #kanyewest #kanye #yeezy #yeezys\n\nhttps://t.co/PocFNDSmBq https://t.co/8w9lP2KC5k",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695014671783309312,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "drake"
},
{
"indices": [
7,
13
],
"text": "jcole"
},
{
"indices": [
14,
24
],
"text": "coleworld"
},
{
"indices": [
25,
35
],
"text": "kanyewest"
},
{
"indices": [
36,
42
],
"text": "kanye"
},
{
"indices": [
43,
49
],
"text": "yeezy"
},
{
"indices": [
50,
57
],
"text": "yeezys"
}
],
"urls": [
{
"url": "https://t.co/PocFNDSmBq",
"indices": [
59,
82
],
"expanded_url": "http://www.SmartRapper.com/level5part2/?3imM",
"display_url": "SmartRapper.com/level5part2/?3\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/TheRapperGuide/status/695014671783309312/photo/1",
"display_url": "pic.twitter.com/8w9lP2KC5k",
"url": "https://t.co/8w9lP2KC5k",
"media_url_https": "https://pbs.twimg.com/media/CaUwKPLUEAA-WF-.jpg",
"id_str": "695014669929418752",
"sizes": {
"large": {
"h": 507,
"resize": "fit",
"w": 507
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 507,
"resize": "fit",
"w": 507
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
83,
106
],
"type": "photo",
"id": 695014669929418752,
"media_url": "http://pbs.twimg.com/media/CaUwKPLUEAA-WF-.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695014671783309312",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3766513995,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/649719416553213956/Z8249YcF.jpg",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/667575474319523842/Vq3rWjkB_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/PluhlNfLFB",
"indices": [
0,
23
],
"expanded_url": "http://SmartRapper.com",
"display_url": "SmartRapper.com"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/PluhlNfLFB",
"indices": [
20,
43
],
"expanded_url": "http://SmartRapper.com",
"display_url": "SmartRapper.com"
}
]
}
},
"followers_count": 10741,
"profile_sidebar_border_color": "000000",
"id_str": "3766513995",
"profile_background_color": "FA743E",
"listed_count": 46,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 3340,
"description": "Unlike other sites, https://t.co/PluhlNfLFB was created by a self made artist just like you | With 14,000,000+ YouTube views and major artist writing credits",
"friends_count": 2366,
"location": "Los Angeles, CA",
"profile_link_color": "000000",
"profile_image_url": "http://pbs.twimg.com/profile_images/667575474319523842/Vq3rWjkB_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3766513995/1444269518",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/649719416553213956/Z8249YcF.jpg",
"screen_name": "TheRapperGuide",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 5897,
"name": "SmartRapper(dot)com",
"notifications": false,
"url": "https://t.co/PluhlNfLFB",
"created_at": "Fri Sep 25 02:45:24 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 22:43:05 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Paris duo @PointPointParis rework #FlashingLights & flawlessly reimagine the #Kanye classic: https://t.co/WGlmlUej7J https://t.co/pMCVaCWpqb",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695014619744747520,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 927983737,
"indices": [
10,
26
],
"id_str": "927983737",
"screen_name": "PointPointParis",
"name": "Point Point"
}
],
"hashtags": [
{
"indices": [
34,
49
],
"text": "FlashingLights"
},
{
"indices": [
81,
87
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/WGlmlUej7J",
"indices": [
97,
120
],
"expanded_url": "http://bit.ly/1PSPEIA",
"display_url": "bit.ly/1PSPEIA"
},
{
"url": "https://t.co/pMCVaCWpqb",
"indices": [
121,
144
],
"expanded_url": "https://soundcloud.com/pointpoint/point-point-fplusl",
"display_url": "soundcloud.com/pointpoint/poi\u2026"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695014619744747520",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 454954995,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/564131578826457089/NoHWR2It_normal.jpeg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/KI49j9Fiyt",
"indices": [
0,
22
],
"expanded_url": "http://beartoons.org",
"display_url": "beartoons.org"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 185,
"profile_sidebar_border_color": "C0DEED",
"id_str": "454954995",
"profile_background_color": "C0DEED",
"listed_count": 5,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 142,
"description": "BearToons: Fresh Sounds with No Bounds.",
"friends_count": 232,
"location": "DC/Edinburgh",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/564131578826457089/NoHWR2It_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/454954995/1441743711",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "BearToonsMusic",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 6,
"name": "BearToons",
"notifications": false,
"url": "http://t.co/KI49j9Fiyt",
"created_at": "Wed Jan 04 15:38:34 +0000 2012",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 22:42:52 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Kanye, no. Just no. https://t.co/WuA4dnglWy # via richjamesuk @BuzzFeedUK #freddierules #kanye",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695013684226215936,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 1068121346,
"indices": [
63,
74
],
"id_str": "1068121346",
"screen_name": "BuzzFeedUK",
"name": "BuzzFeed UK"
}
],
"hashtags": [
{
"indices": [
75,
88
],
"text": "freddierules"
},
{
"indices": [
89,
95
],
"text": "kanye"
}
],
"urls": [
{
"url": "https://t.co/WuA4dnglWy",
"indices": [
21,
44
],
"expanded_url": "http://www.buzzfeed.com/richardhjames/a-lot-of-people-are-enjoying-this-comparison-of-kanye-west-a?utm_term=.hsMPEWJvdv",
"display_url": "buzzfeed.com/richardhjames/\u2026"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695013684226215936",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 4875004575,
"profile_background_image_url_https": null,
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/695011622662848514/4ze1JcGL_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 6,
"profile_sidebar_border_color": "C0DEED",
"id_str": "4875004575",
"profile_background_color": "F5F8FA",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 1,
"description": "",
"friends_count": 38,
"location": "",
"profile_link_color": "2B7BB9",
"profile_image_url": "http://pbs.twimg.com/profile_images/695011622662848514/4ze1JcGL_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": null,
"screen_name": "MissBelle_1983",
"lang": "en-GB",
"profile_background_tile": false,
"favourites_count": 0,
"name": "Miss Belle",
"notifications": false,
"url": null,
"created_at": "Wed Feb 03 22:24:01 +0000 2016",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "no",
"created_at": "Wed Feb 03 22:39:09 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "no",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#kanyewest #KANYE #Yeezus #hiphop #music #work #sunset https://t.co/kgf4XoGEuk",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695013308362006528,
"favorite_count": 1,
"source": "<a href=\"http://vine.co\" rel=\"nofollow\">Vine - Make a Scene</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
10
],
"text": "kanyewest"
},
{
"indices": [
11,
17
],
"text": "KANYE"
},
{
"indices": [
18,
25
],
"text": "Yeezus"
},
{
"indices": [
26,
33
],
"text": "hiphop"
},
{
"indices": [
34,
40
],
"text": "music"
},
{
"indices": [
41,
46
],
"text": "work"
},
{
"indices": [
47,
54
],
"text": "sunset"
}
],
"urls": [
{
"url": "https://t.co/kgf4XoGEuk",
"indices": [
55,
78
],
"expanded_url": "https://vine.co/v/iJgJhJdKzOt",
"display_url": "vine.co/v/iJgJhJdKzOt"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695013308362006528",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 559867012,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/748112897/36b7dd4f9dea22646a8676575b6a2243.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/693254199648370689/3IFpYy4R_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/IF7K2u54rn",
"indices": [
0,
23
],
"expanded_url": "http://soundcloud.com/jaredfigueroa",
"display_url": "soundcloud.com/jaredfigueroa"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 1560,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "559867012",
"profile_background_color": "FFFFFF",
"listed_count": 4,
"is_translation_enabled": false,
"utc_offset": -14400,
"statuses_count": 4566,
"description": "\u262e\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u0950\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u79c1\u306f\u3080\u3057\u308d\u79c1\u306f\u306a\u3044\u8ab0\u306e\u305f\u3081\u306b\u611b\u3059\u308b\u3088\u308a\u3082\u3001\u79c1\u304c\u8ab0\u306e\u305f\u3081\u306b\u5acc\u308f\u308c\u308b\u3068\u601d\u3044\u3002",
"friends_count": 237,
"location": "\u0646\u06cc\u0645\u0647 \u062a\u0627\u0631\u06cc\u06a9 \u0645\u0627\u0647",
"profile_link_color": "FF2247",
"profile_image_url": "http://pbs.twimg.com/profile_images/693254199648370689/3IFpYy4R_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/559867012/1453907157",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/748112897/36b7dd4f9dea22646a8676575b6a2243.jpeg",
"screen_name": "SouthSideEaston",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 820,
"name": "\u064a\u062d\u0644\u0645 \u0627\u0644\u0636\u0648\u0621",
"notifications": false,
"url": "https://t.co/IF7K2u54rn",
"created_at": "Sat Apr 21 21:04:23 +0000 2012",
"contributors_enabled": false,
"time_zone": "Atlantic Time (Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 22:37:40 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @livefrome: #Kanye says he's squashed his beef with #WizKhalifa - are you surprised? We're reading your tweets on #LiveFromE https://t.\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695012422990585857,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 621284187,
"indices": [
3,
13
],
"id_str": "621284187",
"screen_name": "livefrome",
"name": "Live From E!"
}
],
"hashtags": [
{
"indices": [
15,
21
],
"text": "Kanye"
},
{
"indices": [
55,
66
],
"text": "WizKhalifa"
},
{
"indices": [
118,
128
],
"text": "LiveFromE"
}
],
"urls": [],
"media": [
{
"source_user_id": 621284187,
"source_status_id_str": "694908537869217796",
"expanded_url": "http://twitter.com/livefrome/status/694908537869217796/photo/1",
"display_url": "pic.twitter.com/Q0TEWfzpPl",
"url": "https://t.co/Q0TEWfzpPl",
"media_url_https": "https://pbs.twimg.com/media/CaTPofRUMAAFLPP.jpg",
"source_user_id_str": "621284187",
"source_status_id": 694908537869217796,
"id_str": "694908537017741312",
"sizes": {
"small": {
"h": 300,
"resize": "fit",
"w": 300
},
"large": {
"h": 300,
"resize": "fit",
"w": 300
},
"medium": {
"h": 300,
"resize": "fit",
"w": 300
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
139,
140
],
"type": "photo",
"id": 694908537017741312,
"media_url": "http://pbs.twimg.com/media/CaTPofRUMAAFLPP.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 16,
"id_str": "695012422990585857",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "#Kanye says he's squashed his beef with #WizKhalifa - are you surprised? We're reading your tweets on #LiveFromE https://t.co/Q0TEWfzpPl",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694908537869217796,
"favorite_count": 51,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "Kanye"
},
{
"indices": [
40,
51
],
"text": "WizKhalifa"
},
{
"indices": [
103,
113
],
"text": "LiveFromE"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/livefrome/status/694908537869217796/photo/1",
"display_url": "pic.twitter.com/Q0TEWfzpPl",
"url": "https://t.co/Q0TEWfzpPl",
"media_url_https": "https://pbs.twimg.com/media/CaTPofRUMAAFLPP.jpg",
"id_str": "694908537017741312",
"sizes": {
"small": {
"h": 300,
"resize": "fit",
"w": 300
},
"large": {
"h": 300,
"resize": "fit",
"w": 300
},
"medium": {
"h": 300,
"resize": "fit",
"w": 300
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
114,
137
],
"type": "photo",
"id": 694908537017741312,
"media_url": "http://pbs.twimg.com/media/CaTPofRUMAAFLPP.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 16,
"id_str": "694908537869217796",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 621284187,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/600283416/e5s6gy3l0oe5qsed53mr.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/580116409360867328/8EPXo85Z_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/PaS7OuA1cs",
"indices": [
0,
22
],
"expanded_url": "http://eonline.com",
"display_url": "eonline.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 51015,
"profile_sidebar_border_color": "C0DEED",
"id_str": "621284187",
"profile_background_color": "C0DEED",
"listed_count": 156,
"is_translation_enabled": false,
"utc_offset": -25200,
"statuses_count": 5638,
"description": "Pop into our studio weekdays at 12:30p ET | 9:30a PT and join the conversation! #LiveFromE",
"friends_count": 59,
"location": "Los Angeles, CA",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/580116409360867328/8EPXo85Z_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/600283416/e5s6gy3l0oe5qsed53mr.jpeg",
"screen_name": "livefrome",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 113,
"name": "Live From E!",
"notifications": false,
"url": "http://t.co/PaS7OuA1cs",
"created_at": "Thu Jun 28 18:30:12 +0000 2012",
"contributors_enabled": false,
"time_zone": "Arizona",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 15:41:20 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3351357045,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/623605805720412162/IDBPlWvM.jpg",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/695009483735568385/jBQRldvy_normal.png",
"profile_sidebar_fill_color": "000000",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 196,
"profile_sidebar_border_color": "000000",
"id_str": "3351357045",
"profile_background_color": "DD2E44",
"listed_count": 300,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 77179,
"description": "I wanted so much that the things were not as they are, but unfortunately, we are consumed by pride.",
"friends_count": 38,
"location": "",
"profile_link_color": "9220CC",
"profile_image_url": "http://pbs.twimg.com/profile_images/695009483735568385/jBQRldvy_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3351357045/1454538176",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/623605805720412162/IDBPlWvM.jpg",
"screen_name": "notlivingbyprid",
"lang": "pt",
"profile_background_tile": true,
"favourites_count": 39,
"name": "Kamilla",
"notifications": false,
"url": null,
"created_at": "Tue Jun 30 01:20:12 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 22:34:09 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "E x c I t e d #kanye https://t.co/yBK29zYuMd",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695011975760322561,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
14,
20
],
"text": "kanye"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/nicolabradley1/status/695011975760322561/photo/1",
"display_url": "pic.twitter.com/yBK29zYuMd",
"url": "https://t.co/yBK29zYuMd",
"media_url_https": "https://pbs.twimg.com/media/CaUts9uWQAIoYZd.jpg",
"id_str": "695011968005062658",
"sizes": {
"large": {
"h": 1024,
"resize": "fit",
"w": 575
},
"small": {
"h": 605,
"resize": "fit",
"w": 340
},
"medium": {
"h": 1024,
"resize": "fit",
"w": 575
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
21,
44
],
"type": "photo",
"id": 695011968005062658,
"media_url": "http://pbs.twimg.com/media/CaUts9uWQAIoYZd.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695011975760322561",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 129134783,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/692472334071042048/XnNW8YGY_normal.jpg",
"profile_sidebar_fill_color": "F6FFD1",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 434,
"profile_sidebar_border_color": "FFF8AD",
"id_str": "129134783",
"profile_background_color": "FFF04D",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 13428,
"description": "",
"friends_count": 560,
"location": "Scotland",
"profile_link_color": "0099CC",
"profile_image_url": "http://pbs.twimg.com/profile_images/692472334071042048/XnNW8YGY_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/129134783/1451257692",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif",
"screen_name": "nicolabradley1",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 1004,
"name": "Nicola Bradley",
"notifications": false,
"url": null,
"created_at": "Sat Apr 03 08:21:22 +0000 2010",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 22:32:22 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "https://t.co/yj3fhzJJym Best Of 2015 #R&B #TalibKweli #Jeremih #Kanye #Drake https://t.co/eA76CR4uOc",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695011935344025601,
"favorite_count": 0,
"source": "<a href=\"http://www.postcron.com\" rel=\"nofollow\">PostcronApp</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
37,
39
],
"text": "R"
},
{
"indices": [
46,
57
],
"text": "TalibKweli"
},
{
"indices": [
58,
66
],
"text": "Jeremih"
},
{
"indices": [
67,
73
],
"text": "Kanye"
},
{
"indices": [
74,
80
],
"text": "Drake"
}
],
"urls": [
{
"url": "https://t.co/yj3fhzJJym",
"indices": [
0,
23
],
"expanded_url": "http://MixTapesMonthly.com",
"display_url": "MixTapesMonthly.com"
},
{
"url": "https://t.co/eA76CR4uOc",
"indices": [
81,
104
],
"expanded_url": "https://youtu.be/B9nObCdK7a8",
"display_url": "youtu.be/B9nObCdK7a8"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695011935344025601",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2881346928,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/532670633638133760/JgdptL4Q_normal.jpeg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/2gbwcG3nPT",
"indices": [
0,
23
],
"expanded_url": "http://www.MixTapesMonthly.com",
"display_url": "MixTapesMonthly.com"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/YWWkKBibSq",
"indices": [
0,
23
],
"expanded_url": "http://YouTube.com/mixtapesmonthly",
"display_url": "YouTube.com/mixtapesmonthly"
}
]
}
},
"followers_count": 23,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2881346928",
"profile_background_color": "C0DEED",
"listed_count": 15,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 1294,
"description": "https://t.co/YWWkKBibSq",
"friends_count": 1,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/532670633638133760/JgdptL4Q_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "mixtapesmonthly",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 7,
"name": "A&R",
"notifications": false,
"url": "https://t.co/2gbwcG3nPT",
"created_at": "Wed Oct 29 00:44:40 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 22:32:12 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#kanyewest #kanye #yeezy #kimkardashian\nhttps://t.co/00eFJ1f1yH https://t.co/rrzi1QHWGq",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695010956024418304,
"favorite_count": 1,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
10
],
"text": "kanyewest"
},
{
"indices": [
11,
17
],
"text": "kanye"
},
{
"indices": [
18,
24
],
"text": "yeezy"
},
{
"indices": [
25,
39
],
"text": "kimkardashian"
}
],
"urls": [
{
"url": "https://t.co/00eFJ1f1yH",
"indices": [
40,
63
],
"expanded_url": "http://www.MyCrazyLifeStory.com/2016Tattoos49",
"display_url": "MyCrazyLifeStory.com/2016Tattoos49"
}
],
"media": [
{
"expanded_url": "http://twitter.com/EuniceEtier/status/695010956024418304/photo/1",
"display_url": "pic.twitter.com/rrzi1QHWGq",
"url": "https://t.co/rrzi1QHWGq",
"media_url_https": "https://pbs.twimg.com/media/CaUsxx9WwAAn7Yt.jpg",
"id_str": "695010951234502656",
"sizes": {
"large": {
"h": 507,
"resize": "fit",
"w": 507
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 507,
"resize": "fit",
"w": 507
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
64,
87
],
"type": "photo",
"id": 695010951234502656,
"media_url": "http://pbs.twimg.com/media/CaUsxx9WwAAn7Yt.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695010956024418304",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2813656843,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/514970728752353280/C3cagXg7.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/514970719550050304/GHTI4RlH_normal.jpeg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 120,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "2813656843",
"profile_background_color": "0000FF",
"listed_count": 38,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 6973,
"description": "",
"friends_count": 40,
"location": "",
"profile_link_color": "0000FF",
"profile_image_url": "http://pbs.twimg.com/profile_images/514970719550050304/GHTI4RlH_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/514970728752353280/C3cagXg7.jpeg",
"screen_name": "EuniceEtier",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 3339,
"name": "Eunice Etier",
"notifications": false,
"url": null,
"created_at": "Tue Sep 16 19:53:41 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 22:28:19 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#Best #Shoes #Nike-Air-#Yeezy-II-2-NRG-#Kanye-WEST-BLACK SOLAR RED PINK OCTOBER 508214-006 10.5 https://t.co/MvyotrPJwZ #Athletic",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695010665224769536,
"favorite_count": 0,
"source": "<a href=\"http://dlvr.it\" rel=\"nofollow\">dlvr.it</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
5
],
"text": "Best"
},
{
"indices": [
6,
12
],
"text": "Shoes"
},
{
"indices": [
13,
18
],
"text": "Nike"
},
{
"indices": [
23,
29
],
"text": "Yeezy"
},
{
"indices": [
39,
45
],
"text": "Kanye"
},
{
"indices": [
120,
129
],
"text": "Athletic"
}
],
"urls": [
{
"url": "https://t.co/MvyotrPJwZ",
"indices": [
96,
119
],
"expanded_url": "http://dlvr.it/KPp3dq",
"display_url": "dlvr.it/KPp3dq"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695010665224769536",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 4680894614,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/682405004540420096/7RSG4jFw.jpg",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/682391376709877760/3jyZS5d5_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/FCOOpYwG95",
"indices": [
0,
23
],
"expanded_url": "http://Dlvr.it/D8Cvnz",
"display_url": "Dlvr.it/D8Cvnz"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 48,
"profile_sidebar_border_color": "000000",
"id_str": "4680894614",
"profile_background_color": "C0DEED",
"listed_count": 19,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 17359,
"description": "#Nike Air Series #Shoes #AirMax #AirForce #AirJordan... #Deals #Bargains #Forsale #onsale #Discount #Bestseller #Buy #BuyNow #Shopping #Mall #TopSeller #Auction",
"friends_count": 74,
"location": "",
"profile_link_color": "8B0000",
"profile_image_url": "http://pbs.twimg.com/profile_images/682391376709877760/3jyZS5d5_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/4680894614/1451529932",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/682405004540420096/7RSG4jFw.jpg",
"screen_name": "NikeAirMall",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 13,
"name": "Nike Air Mall",
"notifications": false,
"url": "https://t.co/FCOOpYwG95",
"created_at": "Thu Dec 31 02:08:23 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 22:27:09 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @bnharris2011: @OneRepublic Ryan is unimpressed. #Kanye https://t.co/RWVGMkSawQ",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695009073398444032,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 196858617,
"indices": [
3,
16
],
"id_str": "196858617",
"screen_name": "bnharris2011",
"name": "Brett"
},
{
"id": 21133007,
"indices": [
18,
30
],
"id_str": "21133007",
"screen_name": "OneRepublic",
"name": "OneRepublic"
}
],
"hashtags": [
{
"indices": [
52,
58
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/RWVGMkSawQ",
"indices": [
59,
82
],
"expanded_url": "http://twitter.com/bnharris2011/status/692472805062021120/photo/1",
"display_url": "pic.twitter.com/RWVGMkSawQ"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 6,
"id_str": "695009073398444032",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "@OneRepublic Ryan is unimpressed. #Kanye https://t.co/RWVGMkSawQ",
"is_quote_status": false,
"in_reply_to_status_id": 692440341732003840,
"id": 692472805062021120,
"favorite_count": 12,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 21133007,
"indices": [
0,
12
],
"id_str": "21133007",
"screen_name": "OneRepublic",
"name": "OneRepublic"
}
],
"hashtags": [
{
"indices": [
34,
40
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/RWVGMkSawQ",
"indices": [
41,
64
],
"expanded_url": "http://twitter.com/bnharris2011/status/692472805062021120/photo/1",
"display_url": "pic.twitter.com/RWVGMkSawQ"
}
]
},
"in_reply_to_screen_name": "OneRepublic",
"in_reply_to_user_id": 21133007,
"retweet_count": 6,
"id_str": "692472805062021120",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 196858617,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/413607738388660224/ORtiTyOL_normal.jpeg",
"profile_sidebar_fill_color": "C0DFEC",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 662,
"profile_sidebar_border_color": "A8C7F7",
"id_str": "196858617",
"profile_background_color": "022330",
"listed_count": 12,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 4736,
"description": "Dreaming Out Loud about @Onerepublic concerts",
"friends_count": 935,
"location": "Seattle, WA",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/413607738388660224/ORtiTyOL_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/196858617/1402809494",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png",
"screen_name": "bnharris2011",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 1129,
"name": "Brett",
"notifications": false,
"url": null,
"created_at": "Thu Sep 30 02:10:27 +0000 2010",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": "21133007",
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Jan 27 22:22:36 +0000 2016",
"in_reply_to_status_id_str": "692440341732003840",
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 4538846542,
"profile_background_image_url_https": null,
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/686263277630930944/FabxuYvw_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/N310SBA36L",
"indices": [
0,
23
],
"expanded_url": "http://www.OneRepublic.com",
"display_url": "OneRepublic.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 60,
"profile_sidebar_border_color": "C0DEED",
"id_str": "4538846542",
"profile_background_color": "F5F8FA",
"listed_count": 1,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 1136,
"description": "OneRepublic lover!\u2764\ufe0f Ryan, Brent, Zach, Eddie, Brown\u2764\ufe0f #OneRepublic #Native I need OneRepublic more than anything else!\u2764\ufe0f",
"friends_count": 36,
"location": "Groningen, Nederland",
"profile_link_color": "2B7BB9",
"profile_image_url": "http://pbs.twimg.com/profile_images/686263277630930944/FabxuYvw_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/4538846542/1453910532",
"profile_background_image_url": null,
"screen_name": "xonerepublicxo",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 1170,
"name": "OneRepublic\u2764\ufe0f Alisha",
"notifications": false,
"url": "https://t.co/N310SBA36L",
"created_at": "Sat Dec 19 20:07:27 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 22:20:50 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Tell us about the time YOU made up with your mortal enemy a la #Kanye & #WizKhalifa 416 870 8888 - BlakeAndWylde via KiSS925",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695008843793854464,
"favorite_count": 0,
"source": "<a href=\"http://ifttt.com\" rel=\"nofollow\">IFTTT</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
63,
69
],
"text": "Kanye"
},
{
"indices": [
76,
87
],
"text": "WizKhalifa"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695008843793854464",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 3307778821,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/629252411962449920/9So04GOo_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 1153,
"profile_sidebar_border_color": "000000",
"id_str": "3307778821",
"profile_background_color": "000000",
"listed_count": 137,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 142434,
"description": "Where the conversation begins. Follow for breaking news and current events from around the globe. World News , #update , #news , latest news",
"friends_count": 154,
"location": "",
"profile_link_color": "ABB8C2",
"profile_image_url": "http://pbs.twimg.com/profile_images/629252411962449920/9So04GOo_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3307778821/1438868028",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "topnuntious",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 11,
"name": "Top news",
"notifications": false,
"url": null,
"created_at": "Thu Aug 06 11:21:37 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 22:19:55 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Tell us about the time YOU made up with your mortal enemy a la #Kanye & #WizKhalifa 416 870 8888 - @BlakeAndWylde",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695008649593372682,
"favorite_count": 1,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 2296083450,
"indices": [
103,
117
],
"id_str": "2296083450",
"screen_name": "BlakeAndWylde",
"name": "Blake & Wylde"
}
],
"hashtags": [
{
"indices": [
63,
69
],
"text": "Kanye"
},
{
"indices": [
76,
87
],
"text": "WizKhalifa"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695008649593372682",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 47618120,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/868189562/50859e1a2e68783f0b8e431f94e656f9.png",
"verified": true,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/635911682133499905/MiY_X1NQ_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/Id8ki22lmc",
"indices": [
0,
22
],
"expanded_url": "http://www.KiSS925.com",
"display_url": "KiSS925.com"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/KlxN9sXgir",
"indices": [
99,
122
],
"expanded_url": "http://ow.ly/UuuyD",
"display_url": "ow.ly/UuuyD"
}
]
}
},
"followers_count": 96740,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "47618120",
"profile_background_color": "DEDEDE",
"listed_count": 501,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 183470,
"description": "Toronto\u2019s Station for Roz & Mocha and Non-Stop Hits! \nListen here if you love music and fun people https://t.co/KlxN9sXgir",
"friends_count": 401,
"location": "Toronto",
"profile_link_color": "6A1F82",
"profile_image_url": "http://pbs.twimg.com/profile_images/635911682133499905/MiY_X1NQ_normal.png",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/47618120/1450452518",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/868189562/50859e1a2e68783f0b8e431f94e656f9.png",
"screen_name": "KiSS925",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 21487,
"name": "KiSS 92.5",
"notifications": false,
"url": "http://t.co/Id8ki22lmc",
"created_at": "Tue Jun 16 13:04:23 +0000 2009",
"contributors_enabled": false,
"time_zone": "Quito",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 22:19:09 +0000 2016",
"in_reply_to_status_id_str": null,
"place": {
"country_code": "CA",
"url": "https://api.twitter.com/1.1/geo/id/3797791ff9c0e4c6.json",
"country": "Canada",
"place_type": "city",
"bounding_box": {
"type": "Polygon",
"coordinates": [
[
[
-79.639319,
43.403221
],
[
-78.90582,
43.403221
],
[
-78.90582,
43.855401
],
[
-79.639319,
43.855401
]
]
]
},
"contained_within": [],
"full_name": "Toronto, Ontario",
"attributes": {},
"id": "3797791ff9c0e4c6",
"name": "Toronto"
},
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @UpscaleHype: What Can We Expect From #Kanye\u2019s #YeezySeason3? Will he do the same or switch it up? https://t.co/Mr83dLteQD https://t.co/\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695007653483921408,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 30055564,
"indices": [
3,
15
],
"id_str": "30055564",
"screen_name": "UpscaleHype",
"name": "UpscaleHype"
}
],
"hashtags": [
{
"indices": [
41,
47
],
"text": "Kanye"
},
{
"indices": [
50,
63
],
"text": "YeezySeason3"
}
],
"urls": [
{
"url": "https://t.co/Mr83dLteQD",
"indices": [
102,
125
],
"expanded_url": "http://www.upscalehype.com/2016/02/what-can-we-expect-from-kanyes-yeezy-season-3/",
"display_url": "upscalehype.com/2016/02/what-c\u2026"
}
],
"media": [
{
"source_user_id": 30055564,
"source_status_id_str": "695007000644554752",
"expanded_url": "http://twitter.com/UpscaleHype/status/695007000644554752/photo/1",
"display_url": "pic.twitter.com/MJQaPcBoBj",
"url": "https://t.co/MJQaPcBoBj",
"media_url_https": "https://pbs.twimg.com/media/CaUpLoWVIAAWCgf.jpg",
"source_user_id_str": "30055564",
"source_status_id": 695007000644554752,
"id_str": "695006997284986880",
"sizes": {
"small": {
"h": 226,
"resize": "fit",
"w": 340
},
"large": {
"h": 512,
"resize": "fit",
"w": 768
},
"medium": {
"h": 400,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
126,
140
],
"type": "photo",
"id": 695006997284986880,
"media_url": "http://pbs.twimg.com/media/CaUpLoWVIAAWCgf.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "695007653483921408",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "What Can We Expect From #Kanye\u2019s #YeezySeason3? Will he do the same or switch it up? https://t.co/Mr83dLteQD https://t.co/MJQaPcBoBj",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695007000644554752,
"favorite_count": 3,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
24,
30
],
"text": "Kanye"
},
{
"indices": [
33,
46
],
"text": "YeezySeason3"
}
],
"urls": [
{
"url": "https://t.co/Mr83dLteQD",
"indices": [
85,
108
],
"expanded_url": "http://www.upscalehype.com/2016/02/what-can-we-expect-from-kanyes-yeezy-season-3/",
"display_url": "upscalehype.com/2016/02/what-c\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/UpscaleHype/status/695007000644554752/photo/1",
"display_url": "pic.twitter.com/MJQaPcBoBj",
"url": "https://t.co/MJQaPcBoBj",
"media_url_https": "https://pbs.twimg.com/media/CaUpLoWVIAAWCgf.jpg",
"id_str": "695006997284986880",
"sizes": {
"small": {
"h": 226,
"resize": "fit",
"w": 340
},
"large": {
"h": 512,
"resize": "fit",
"w": 768
},
"medium": {
"h": 400,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
109,
132
],
"type": "photo",
"id": 695006997284986880,
"media_url": "http://pbs.twimg.com/media/CaUpLoWVIAAWCgf.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "695007000644554752",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 30055564,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/35482601/Uh_background.jpg",
"verified": false,
"profile_text_color": "666666",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/2498802680/ewq8g7rpczwjkwi0nblc_normal.jpeg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/LAb1nSovmI",
"indices": [
0,
22
],
"expanded_url": "http://upscalehype.com",
"display_url": "upscalehype.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 9786,
"profile_sidebar_border_color": "000000",
"id_str": "30055564",
"profile_background_color": "1A1B1F",
"listed_count": 202,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 14284,
"description": "Celebrity fashion and high-end lifestyle news.",
"friends_count": 251,
"location": "USA",
"profile_link_color": "2FC2EF",
"profile_image_url": "http://pbs.twimg.com/profile_images/2498802680/ewq8g7rpczwjkwi0nblc_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/30055564/1356018839",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/35482601/Uh_background.jpg",
"screen_name": "UpscaleHype",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 36,
"name": "UpscaleHype",
"notifications": false,
"url": "http://t.co/LAb1nSovmI",
"created_at": "Thu Apr 09 20:05:48 +0000 2009",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 22:12:36 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 23042208,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/30400140/background.bmp",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/581633770392023040/Jr0angqo_normal.jpg",
"profile_sidebar_fill_color": "DDFFCC",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 198,
"profile_sidebar_border_color": "BDDCAD",
"id_str": "23042208",
"profile_background_color": "9AE4E8",
"listed_count": 15,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 15412,
"description": "",
"friends_count": 365,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/581633770392023040/Jr0angqo_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/23042208/1411684229",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/30400140/background.bmp",
"screen_name": "ajbaria",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 4994,
"name": "AB",
"notifications": false,
"url": null,
"created_at": "Fri Mar 06 07:31:27 +0000 2009",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 22:15:11 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @UpscaleHype: What Can We Expect From #Kanye\u2019s #YeezySeason3? Will he do the same or switch it up? https://t.co/Mr83dLteQD https://t.co/\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695007575406985216,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 30055564,
"indices": [
3,
15
],
"id_str": "30055564",
"screen_name": "UpscaleHype",
"name": "UpscaleHype"
}
],
"hashtags": [
{
"indices": [
41,
47
],
"text": "Kanye"
},
{
"indices": [
50,
63
],
"text": "YeezySeason3"
}
],
"urls": [
{
"url": "https://t.co/Mr83dLteQD",
"indices": [
102,
125
],
"expanded_url": "http://www.upscalehype.com/2016/02/what-can-we-expect-from-kanyes-yeezy-season-3/",
"display_url": "upscalehype.com/2016/02/what-c\u2026"
}
],
"media": [
{
"source_user_id": 30055564,
"source_status_id_str": "695007000644554752",
"expanded_url": "http://twitter.com/UpscaleHype/status/695007000644554752/photo/1",
"display_url": "pic.twitter.com/MJQaPcBoBj",
"url": "https://t.co/MJQaPcBoBj",
"media_url_https": "https://pbs.twimg.com/media/CaUpLoWVIAAWCgf.jpg",
"source_user_id_str": "30055564",
"source_status_id": 695007000644554752,
"id_str": "695006997284986880",
"sizes": {
"small": {
"h": 226,
"resize": "fit",
"w": 340
},
"large": {
"h": 512,
"resize": "fit",
"w": 768
},
"medium": {
"h": 400,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
126,
140
],
"type": "photo",
"id": 695006997284986880,
"media_url": "http://pbs.twimg.com/media/CaUpLoWVIAAWCgf.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "695007575406985216",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "What Can We Expect From #Kanye\u2019s #YeezySeason3? Will he do the same or switch it up? https://t.co/Mr83dLteQD https://t.co/MJQaPcBoBj",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695007000644554752,
"favorite_count": 3,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
24,
30
],
"text": "Kanye"
},
{
"indices": [
33,
46
],
"text": "YeezySeason3"
}
],
"urls": [
{
"url": "https://t.co/Mr83dLteQD",
"indices": [
85,
108
],
"expanded_url": "http://www.upscalehype.com/2016/02/what-can-we-expect-from-kanyes-yeezy-season-3/",
"display_url": "upscalehype.com/2016/02/what-c\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/UpscaleHype/status/695007000644554752/photo/1",
"display_url": "pic.twitter.com/MJQaPcBoBj",
"url": "https://t.co/MJQaPcBoBj",
"media_url_https": "https://pbs.twimg.com/media/CaUpLoWVIAAWCgf.jpg",
"id_str": "695006997284986880",
"sizes": {
"small": {
"h": 226,
"resize": "fit",
"w": 340
},
"large": {
"h": 512,
"resize": "fit",
"w": 768
},
"medium": {
"h": 400,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
109,
132
],
"type": "photo",
"id": 695006997284986880,
"media_url": "http://pbs.twimg.com/media/CaUpLoWVIAAWCgf.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "695007000644554752",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 30055564,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/35482601/Uh_background.jpg",
"verified": false,
"profile_text_color": "666666",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/2498802680/ewq8g7rpczwjkwi0nblc_normal.jpeg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/LAb1nSovmI",
"indices": [
0,
22
],
"expanded_url": "http://upscalehype.com",
"display_url": "upscalehype.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 9786,
"profile_sidebar_border_color": "000000",
"id_str": "30055564",
"profile_background_color": "1A1B1F",
"listed_count": 202,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 14284,
"description": "Celebrity fashion and high-end lifestyle news.",
"friends_count": 251,
"location": "USA",
"profile_link_color": "2FC2EF",
"profile_image_url": "http://pbs.twimg.com/profile_images/2498802680/ewq8g7rpczwjkwi0nblc_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/30055564/1356018839",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/35482601/Uh_background.jpg",
"screen_name": "UpscaleHype",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 36,
"name": "UpscaleHype",
"notifications": false,
"url": "http://t.co/LAb1nSovmI",
"created_at": "Thu Apr 09 20:05:48 +0000 2009",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 22:12:36 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 60178885,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/684599626096234496/wVA3P2Qx_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 612,
"profile_sidebar_border_color": "C0DEED",
"id_str": "60178885",
"profile_background_color": "C0DEED",
"listed_count": 6,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 15717,
"description": "ive been talking to God for so long as i look at my life,he been talking back #SJU18 if lost or stolen return @amandaaaniicole to here",
"friends_count": 1642,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/684599626096234496/wVA3P2Qx_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/60178885/1450705695",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "whoelsejairus",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 9873,
"name": "jairus",
"notifications": false,
"url": null,
"created_at": "Sat Jul 25 23:40:14 +0000 2009",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 22:14:53 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "@MonicaJoness Still waiting on 2020! #Kanye \ud83c\uddfa\ud83c\uddf8",
"is_quote_status": false,
"in_reply_to_status_id": 694995869775450112,
"id": 695007208824709120,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 311007405,
"indices": [
0,
13
],
"id_str": "311007405",
"screen_name": "MonicaJoness",
"name": "Monica"
}
],
"hashtags": [
{
"indices": [
37,
43
],
"text": "Kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": "MonicaJoness",
"in_reply_to_user_id": 311007405,
"retweet_count": 0,
"id_str": "695007208824709120",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 1684390970,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/658005751835680768/qKZtaK28_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 308,
"profile_sidebar_border_color": "C0DEED",
"id_str": "1684390970",
"profile_background_color": "C0DEED",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 699,
"description": "You all are sluts!\u270c\ufe0f",
"friends_count": 633,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/658005751835680768/qKZtaK28_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1684390970/1448425612",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "brodkorb_3",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 617,
"name": "sheyannebrodkorb",
"notifications": false,
"url": null,
"created_at": "Mon Aug 19 23:10:01 +0000 2013",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": "311007405",
"lang": "en",
"created_at": "Wed Feb 03 22:13:25 +0000 2016",
"in_reply_to_status_id_str": "694995869775450112",
"place": {
"country_code": "US",
"url": "https://api.twitter.com/1.1/geo/id/4b88d908e0a0f2e8.json",
"country": "United States",
"place_type": "city",
"bounding_box": {
"type": "Polygon",
"coordinates": [
[
[
-98.0782446,
43.687509
],
[
-97.986429,
43.687509
],
[
-97.986429,
43.7683879
],
[
-98.0782446,
43.7683879
]
]
]
},
"contained_within": [],
"full_name": "Mitchell, SD",
"attributes": {},
"id": "4b88d908e0a0f2e8",
"name": "Mitchell"
},
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "What Can We Expect From #Kanye\u2019s #YeezySeason3? Will he do the same or switch it up? https://t.co/Mr83dLteQD https://t.co/MJQaPcBoBj",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695007000644554752,
"favorite_count": 3,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
24,
30
],
"text": "Kanye"
},
{
"indices": [
33,
46
],
"text": "YeezySeason3"
}
],
"urls": [
{
"url": "https://t.co/Mr83dLteQD",
"indices": [
85,
108
],
"expanded_url": "http://www.upscalehype.com/2016/02/what-can-we-expect-from-kanyes-yeezy-season-3/",
"display_url": "upscalehype.com/2016/02/what-c\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/UpscaleHype/status/695007000644554752/photo/1",
"display_url": "pic.twitter.com/MJQaPcBoBj",
"url": "https://t.co/MJQaPcBoBj",
"media_url_https": "https://pbs.twimg.com/media/CaUpLoWVIAAWCgf.jpg",
"id_str": "695006997284986880",
"sizes": {
"small": {
"h": 226,
"resize": "fit",
"w": 340
},
"large": {
"h": 512,
"resize": "fit",
"w": 768
},
"medium": {
"h": 400,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
109,
132
],
"type": "photo",
"id": 695006997284986880,
"media_url": "http://pbs.twimg.com/media/CaUpLoWVIAAWCgf.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "695007000644554752",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 30055564,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/35482601/Uh_background.jpg",
"verified": false,
"profile_text_color": "666666",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/2498802680/ewq8g7rpczwjkwi0nblc_normal.jpeg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/LAb1nSovmI",
"indices": [
0,
22
],
"expanded_url": "http://upscalehype.com",
"display_url": "upscalehype.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 9786,
"profile_sidebar_border_color": "000000",
"id_str": "30055564",
"profile_background_color": "1A1B1F",
"listed_count": 202,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 14284,
"description": "Celebrity fashion and high-end lifestyle news.",
"friends_count": 251,
"location": "USA",
"profile_link_color": "2FC2EF",
"profile_image_url": "http://pbs.twimg.com/profile_images/2498802680/ewq8g7rpczwjkwi0nblc_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/30055564/1356018839",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/35482601/Uh_background.jpg",
"screen_name": "UpscaleHype",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 36,
"name": "UpscaleHype",
"notifications": false,
"url": "http://t.co/LAb1nSovmI",
"created_at": "Thu Apr 09 20:05:48 +0000 2009",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 22:12:36 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "\"Sandy, would you wear my ring\". #Kanye #GreaseLive",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695006764304056321,
"favorite_count": 1,
"source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
34,
40
],
"text": "Kanye"
},
{
"indices": [
41,
52
],
"text": "GreaseLive"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695006764304056321",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 393457551,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/348607646/Farm_Street_School_-_a_other_view_of_School_Hall_Newtown_10-7-1973.jpg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1594660128/liberace_fur1_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 6333,
"profile_sidebar_border_color": "C0DEED",
"id_str": "393457551",
"profile_background_color": "C0DEED",
"listed_count": 30,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 15256,
"description": "Whilst you're screaming out Corner of the Sky for David Grindrod, I'm wondering if I set the V+ box for Dickinson's Real Deal. No Sondheim!",
"friends_count": 2344,
"location": "",
"profile_link_color": "9266CC",
"profile_image_url": "http://pbs.twimg.com/profile_images/1594660128/liberace_fur1_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/393457551/1382615856",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/348607646/Farm_Street_School_-_a_other_view_of_School_Hall_Newtown_10-7-1973.jpg",
"screen_name": "AuditionPianist",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 167,
"name": "AuditionPianist",
"notifications": false,
"url": null,
"created_at": "Tue Oct 18 15:26:46 +0000 2011",
"contributors_enabled": false,
"time_zone": "London",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 22:11:39 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @KollegeKidd: #FamousDex - #Kanye | Dir. @lakafilms\nhttps://t.co/cbD6I2nEk9 https://t.co/Wr8qLogBJB",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695006185716629504,
"favorite_count": 0,
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Mobile Web (M5)</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 308000492,
"indices": [
3,
15
],
"id_str": "308000492",
"screen_name": "KollegeKidd",
"name": "KollegeKidd.com"
},
{
"id": 2837771111,
"indices": [
44,
54
],
"id_str": "2837771111",
"screen_name": "lakafilms",
"name": "Laka Films"
}
],
"hashtags": [
{
"indices": [
17,
27
],
"text": "FamousDex"
},
{
"indices": [
30,
36
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/cbD6I2nEk9",
"indices": [
55,
78
],
"expanded_url": "https://www.facebook.com/188561194527170/videos/963347080381907/?video_source=pages_finch_main_video",
"display_url": "facebook.com/18856119452717\u2026"
}
],
"media": [
{
"source_user_id": 308000492,
"source_status_id_str": "694370741073088512",
"expanded_url": "http://twitter.com/KollegeKidd/status/694370741073088512/photo/1",
"display_url": "pic.twitter.com/Wr8qLogBJB",
"url": "https://t.co/Wr8qLogBJB",
"media_url_https": "https://pbs.twimg.com/media/CaLmglUXEAI5K90.jpg",
"source_user_id_str": "308000492",
"source_status_id": 694370741073088512,
"id_str": "694370740016189442",
"sizes": {
"large": {
"h": 300,
"resize": "fit",
"w": 580
},
"small": {
"h": 175,
"resize": "fit",
"w": 340
},
"medium": {
"h": 300,
"resize": "fit",
"w": 580
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
79,
102
],
"type": "photo",
"id": 694370740016189442,
"media_url": "http://pbs.twimg.com/media/CaLmglUXEAI5K90.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3,
"id_str": "695006185716629504",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "#FamousDex - #Kanye | Dir. @lakafilms\nhttps://t.co/cbD6I2nEk9 https://t.co/Wr8qLogBJB",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695002210774708224,
"favorite_count": 5,
"source": "<a href=\"http://www.tweetcaster.com\" rel=\"nofollow\">TweetCaster for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 2837771111,
"indices": [
27,
37
],
"id_str": "2837771111",
"screen_name": "lakafilms",
"name": "Laka Films"
}
],
"hashtags": [
{
"indices": [
0,
10
],
"text": "FamousDex"
},
{
"indices": [
13,
19
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/cbD6I2nEk9",
"indices": [
38,
61
],
"expanded_url": "https://www.facebook.com/188561194527170/videos/963347080381907/?video_source=pages_finch_main_video",
"display_url": "facebook.com/18856119452717\u2026"
}
],
"media": [
{
"source_user_id": 308000492,
"source_status_id_str": "694370741073088512",
"expanded_url": "http://twitter.com/KollegeKidd/status/694370741073088512/photo/1",
"display_url": "pic.twitter.com/Wr8qLogBJB",
"url": "https://t.co/Wr8qLogBJB",
"media_url_https": "https://pbs.twimg.com/media/CaLmglUXEAI5K90.jpg",
"source_user_id_str": "308000492",
"source_status_id": 694370741073088512,
"id_str": "694370740016189442",
"sizes": {
"large": {
"h": 300,
"resize": "fit",
"w": 580
},
"small": {
"h": 175,
"resize": "fit",
"w": 340
},
"medium": {
"h": 300,
"resize": "fit",
"w": 580
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
62,
85
],
"type": "photo",
"id": 694370740016189442,
"media_url": "http://pbs.twimg.com/media/CaLmglUXEAI5K90.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3,
"id_str": "695002210774708224",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 308000492,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000051760649/88569dcfdd71550983df1af9ebdfb4e6.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000146742271/a7faddab90746749b386accc3656b145_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/TpYNAqMKaL",
"indices": [
0,
22
],
"expanded_url": "http://www.kollegekidd.com",
"display_url": "kollegekidd.com"
}
]
},
"description": {
"urls": [
{
"url": "http://t.co/SgIzLhBicG",
"indices": [
66,
88
],
"expanded_url": "http://Youtube.com/KollegeKidd",
"display_url": "Youtube.com/KollegeKidd"
},
{
"url": "http://t.co/wsB0r5rrXG",
"indices": [
117,
139
],
"expanded_url": "http://instagram.com/kollegekidd",
"display_url": "instagram.com/kollegekidd"
}
]
}
},
"followers_count": 22095,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "308000492",
"profile_background_color": "C0DEED",
"listed_count": 86,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 66207,
"description": "No. 1 For Midwest Hip Hop News & Urban Edutainment | Subscribe To http://t.co/SgIzLhBicG | Follow Us On Instagram: http://t.co/wsB0r5rrXG",
"friends_count": 2443,
"location": "Midwest",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/378800000146742271/a7faddab90746749b386accc3656b145_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/308000492/1427412378",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000051760649/88569dcfdd71550983df1af9ebdfb4e6.jpeg",
"screen_name": "KollegeKidd",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 4242,
"name": "KollegeKidd.com",
"notifications": false,
"url": "http://t.co/TpYNAqMKaL",
"created_at": "Mon May 30 17:19:40 +0000 2011",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 21:53:34 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2577584786,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/483856225457954816/zTU7sMUz_normal.jpeg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 17,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2577584786",
"profile_background_color": "C0DEED",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 18,
"description": "",
"friends_count": 125,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/483856225457954816/zTU7sMUz_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "cee_imgoodwbu",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 36,
"name": "CeePee",
"notifications": false,
"url": null,
"created_at": "Thu Jun 19 22:29:39 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 22:09:21 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#Kanye has recorded a remixed version of Aerosmith's \"Dude (Looks Like a Lady),\" as a cruel jab\u2026 https://t.co/daePt4Xwe3",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695006079407632384,
"favorite_count": 0,
"source": "<a href=\"http://instagram.com\" rel=\"nofollow\">Instagram</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/daePt4Xwe3",
"indices": [
97,
120
],
"expanded_url": "https://www.instagram.com/p/BBVyCGrF1qR/",
"display_url": "instagram.com/p/BBVyCGrF1qR/"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695006079407632384",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 16523912,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/14051251/CAlogo_sm.jpg",
"verified": false,
"profile_text_color": "3C3940",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/672231081379241984/EwlHKNJA_normal.jpg",
"profile_sidebar_fill_color": "95E8EC",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/tvCmpYtfCO",
"indices": [
0,
23
],
"expanded_url": "http://www.cityalert.com",
"display_url": "cityalert.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 1723,
"profile_sidebar_border_color": "5ED4DC",
"id_str": "16523912",
"profile_background_color": "0099B9",
"listed_count": 58,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 9593,
"description": "Entertainment. Events. Fashion. Lifestyle. Media. Music. Nightlife. Travel.",
"friends_count": 1824,
"location": "Worldwide",
"profile_link_color": "0099B9",
"profile_image_url": "http://pbs.twimg.com/profile_images/672231081379241984/EwlHKNJA_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/16523912/1400269433",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/14051251/CAlogo_sm.jpg",
"screen_name": "CityAlert",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 5,
"name": "CityAlert.com",
"notifications": false,
"url": "https://t.co/tvCmpYtfCO",
"created_at": "Tue Sep 30 04:42:54 +0000 2008",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 22:08:56 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @AnnieMelBrooks: \"panem et circenses\" / bread & circus:\n#HillaryClinton #TedCruz \n#KimKardashian #Kanye\n#illuminati #Media lies \nStand u\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695005039216218113,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 2430043946,
"indices": [
3,
18
],
"id_str": "2430043946",
"screen_name": "AnnieMelBrooks",
"name": "Annie Brooks"
}
],
"hashtags": [
{
"indices": [
63,
78
],
"text": "HillaryClinton"
},
{
"indices": [
79,
87
],
"text": "TedCruz"
},
{
"indices": [
89,
103
],
"text": "KimKardashian"
},
{
"indices": [
104,
110
],
"text": "Kanye"
},
{
"indices": [
111,
122
],
"text": "illuminati"
},
{
"indices": [
123,
129
],
"text": "Media"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "695005039216218113",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "\"panem et circenses\" / bread & circus:\n#HillaryClinton #TedCruz \n#KimKardashian #Kanye\n#illuminati #Media lies \nStand up Silent Majority!",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 693674810338103296,
"favorite_count": 4,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
43,
58
],
"text": "HillaryClinton"
},
{
"indices": [
59,
67
],
"text": "TedCruz"
},
{
"indices": [
69,
83
],
"text": "KimKardashian"
},
{
"indices": [
84,
90
],
"text": "Kanye"
},
{
"indices": [
91,
102
],
"text": "illuminati"
},
{
"indices": [
103,
109
],
"text": "Media"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "693674810338103296",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2430043946,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/472834660699889664/afXJa1v0_normal.jpeg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 1172,
"profile_sidebar_border_color": "000000",
"id_str": "2430043946",
"profile_background_color": "131516",
"listed_count": 18,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 2482,
"description": "Minnesota born and raised. Packer Fan in love with a Yankee Fan. It's complicated to say the least.",
"friends_count": 2474,
"location": "",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/472834660699889664/afXJa1v0_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2430043946/1453438060",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif",
"screen_name": "AnnieMelBrooks",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 3185,
"name": "Annie Brooks",
"notifications": false,
"url": null,
"created_at": "Sun Apr 06 07:06:45 +0000 2014",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Sun Jan 31 05:58:57 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 327100821,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/665763574170722304/qfqLC78G_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 77,
"profile_sidebar_border_color": "C0DEED",
"id_str": "327100821",
"profile_background_color": "C0DEED",
"listed_count": 1,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 470,
"description": "",
"friends_count": 92,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/665763574170722304/qfqLC78G_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "mepixy111",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 850,
"name": "Maria Sjostrom",
"notifications": false,
"url": null,
"created_at": "Fri Jul 01 00:32:08 +0000 2011",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 22:04:48 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "COD #wtf #lol #kanye #rap #fish https://t.co/IDzb1EPoqx",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695004976251330560,
"favorite_count": 0,
"source": "<a href=\"http://vine.co\" rel=\"nofollow\">Vine - Make a Scene</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
4,
8
],
"text": "wtf"
},
{
"indices": [
9,
13
],
"text": "lol"
},
{
"indices": [
14,
20
],
"text": "kanye"
},
{
"indices": [
21,
25
],
"text": "rap"
},
{
"indices": [
26,
31
],
"text": "fish"
}
],
"urls": [
{
"url": "https://t.co/IDzb1EPoqx",
"indices": [
32,
55
],
"expanded_url": "https://vine.co/v/iJg7jVJYuUJ",
"display_url": "vine.co/v/iJg7jVJYuUJ"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695004976251330560",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 245184367,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/517466649562062848/ACHVK2d8_normal.jpeg",
"profile_sidebar_fill_color": "000000",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 251,
"profile_sidebar_border_color": "000000",
"id_str": "245184367",
"profile_background_color": "000000",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": -14400,
"statuses_count": 3415,
"description": "A day without laughter is a day wasted",
"friends_count": 302,
"location": "TCNJ",
"profile_link_color": "9266CC",
"profile_image_url": "http://pbs.twimg.com/profile_images/517466649562062848/ACHVK2d8_normal.jpeg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/245184367/1411688857",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "DeVoeEmpire",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 2792,
"name": "Nolan",
"notifications": false,
"url": null,
"created_at": "Mon Jan 31 02:39:06 +0000 2011",
"contributors_enabled": false,
"time_zone": "Atlantic Time (Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 22:04:33 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "When you get caught having too much fun...do the Kanye #kanyewest #KANYE #KanyeBeLike... (Vine by @ChrisRiggi) https://t.co/QMviIB3hbH",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695004934664798208,
"favorite_count": 1,
"source": "<a href=\"http://vine.co\" rel=\"nofollow\">Vine - Make a Scene</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 132712872,
"indices": [
98,
109
],
"id_str": "132712872",
"screen_name": "ChrisRiggi",
"name": "Chris Riggi"
}
],
"hashtags": [
{
"indices": [
55,
65
],
"text": "kanyewest"
},
{
"indices": [
66,
72
],
"text": "KANYE"
},
{
"indices": [
73,
85
],
"text": "KanyeBeLike"
}
],
"urls": [
{
"url": "https://t.co/QMviIB3hbH",
"indices": [
111,
134
],
"expanded_url": "https://vine.co/v/iJgu73D1E3A",
"display_url": "vine.co/v/iJgu73D1E3A"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695004934664798208",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 246669183,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif",
"verified": false,
"profile_text_color": "3C3940",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/612639774403198976/6yILHgLP_normal.jpg",
"profile_sidebar_fill_color": "95E8EC",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 262,
"profile_sidebar_border_color": "5ED4DC",
"id_str": "246669183",
"profile_background_color": "0099B9",
"listed_count": 57,
"is_translation_enabled": false,
"utc_offset": -36000,
"statuses_count": 14744,
"description": "",
"friends_count": 2146,
"location": "",
"profile_link_color": "DD2E44",
"profile_image_url": "http://pbs.twimg.com/profile_images/612639774403198976/6yILHgLP_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/246669183/1418060162",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif",
"screen_name": "jiicab",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 11752,
"name": "JoMari",
"notifications": false,
"url": null,
"created_at": "Thu Feb 03 06:55:36 +0000 2011",
"contributors_enabled": false,
"time_zone": "Hawaii",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 22:04:23 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "\"THE SEER\" Brings you Psychic Gossip from Hollywierd: TOLD YA, So it starts .. #kanye #rap #thekardashians #skynews https://t.co/HxfOT6wh0d",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695004679151886337,
"favorite_count": 0,
"source": "<a href=\"http://www.apple.com/\" rel=\"nofollow\">OS X</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
79,
85
],
"text": "kanye"
},
{
"indices": [
86,
90
],
"text": "rap"
},
{
"indices": [
91,
106
],
"text": "thekardashians"
},
{
"indices": [
107,
115
],
"text": "skynews"
}
],
"urls": [
{
"url": "https://t.co/HxfOT6wh0d",
"indices": [
116,
139
],
"expanded_url": "http://psychicgossip.blogspot.com/2016/02/told-ya-so-it-starts.html",
"display_url": "psychicgossip.blogspot.com/2016/02/told-y\u2026"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695004679151886337",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 185874070,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif",
"verified": false,
"profile_text_color": "3D1957",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/587678998223720450/5x24Xm1U_normal.jpg",
"profile_sidebar_fill_color": "7AC3EE",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/uHz8fJg0qe",
"indices": [
0,
22
],
"expanded_url": "http://psychicgossip.blogspot.com/",
"display_url": "psychicgossip.blogspot.com"
}
]
},
"description": {
"urls": [
{
"url": "http://t.co/YxDYP5mgXd",
"indices": [
58,
80
],
"expanded_url": "http://psychicgossip.blogspot.com/2013/12/2014-predictions.html",
"display_url": "psychicgossip.blogspot.com/2013/12/2014-p\u2026"
}
]
}
},
"followers_count": 735,
"profile_sidebar_border_color": "65B0DA",
"id_str": "185874070",
"profile_background_color": "642D8B",
"listed_count": 14,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 7026,
"description": "All you ever want to know about gossip before it happens\r\nhttp://t.co/YxDYP5mgXd",
"friends_count": 2005,
"location": "Hollywierd",
"profile_link_color": "FF0000",
"profile_image_url": "http://pbs.twimg.com/profile_images/587678998223720450/5x24Xm1U_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/185874070/1348009887",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif",
"screen_name": "gossippsychic",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 14,
"name": "Christian Dion",
"notifications": false,
"url": "http://t.co/uHz8fJg0qe",
"created_at": "Thu Sep 02 01:23:45 +0000 2010",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 22:03:22 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "kanye west // heartless \ud83d\udd25\ud83d\udd25 #Glastonbury2015 #kanye #Yeezus #glastonburyfestival https://t.co/68PWRlqUX8",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695003439248580608,
"favorite_count": 0,
"source": "<a href=\"https://vine.co\" rel=\"nofollow\">Vine for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
27,
43
],
"text": "Glastonbury2015"
},
{
"indices": [
44,
50
],
"text": "kanye"
},
{
"indices": [
51,
58
],
"text": "Yeezus"
},
{
"indices": [
59,
79
],
"text": "glastonburyfestival"
}
],
"urls": [
{
"url": "https://t.co/68PWRlqUX8",
"indices": [
80,
103
],
"expanded_url": "https://vine.co/v/eJiKY2hb5gz",
"display_url": "vine.co/v/eJiKY2hb5gz"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695003439248580608",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 163040736,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/576753127128449024/9FFt9IcE_normal.jpeg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": [
{
"url": "https://t.co/WQ9HYb0A7u",
"indices": [
0,
23
],
"expanded_url": "http://instagram.com/mahdi_12345/",
"display_url": "instagram.com/mahdi_12345/"
}
]
}
},
"followers_count": 1325,
"profile_sidebar_border_color": "C0DEED",
"id_str": "163040736",
"profile_background_color": "C0DEED",
"listed_count": 4,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 10277,
"description": "https://t.co/WQ9HYb0A7u",
"friends_count": 818,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/576753127128449024/9FFt9IcE_normal.jpeg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/163040736/1427070455",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "mahd123",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 13466,
"name": "Mahdi",
"notifications": false,
"url": null,
"created_at": "Mon Jul 05 11:33:23 +0000 2010",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 21:58:27 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @bnharris2011: @OneRepublic Ryan is unimpressed. #Kanye https://t.co/RWVGMkSawQ",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695003391462895616,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 196858617,
"indices": [
3,
16
],
"id_str": "196858617",
"screen_name": "bnharris2011",
"name": "Brett"
},
{
"id": 21133007,
"indices": [
18,
30
],
"id_str": "21133007",
"screen_name": "OneRepublic",
"name": "OneRepublic"
}
],
"hashtags": [
{
"indices": [
52,
58
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/RWVGMkSawQ",
"indices": [
59,
82
],
"expanded_url": "http://twitter.com/bnharris2011/status/692472805062021120/photo/1",
"display_url": "pic.twitter.com/RWVGMkSawQ"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 6,
"id_str": "695003391462895616",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "@OneRepublic Ryan is unimpressed. #Kanye https://t.co/RWVGMkSawQ",
"is_quote_status": false,
"in_reply_to_status_id": 692440341732003840,
"id": 692472805062021120,
"favorite_count": 12,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 21133007,
"indices": [
0,
12
],
"id_str": "21133007",
"screen_name": "OneRepublic",
"name": "OneRepublic"
}
],
"hashtags": [
{
"indices": [
34,
40
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/RWVGMkSawQ",
"indices": [
41,
64
],
"expanded_url": "http://twitter.com/bnharris2011/status/692472805062021120/photo/1",
"display_url": "pic.twitter.com/RWVGMkSawQ"
}
]
},
"in_reply_to_screen_name": "OneRepublic",
"in_reply_to_user_id": 21133007,
"retweet_count": 6,
"id_str": "692472805062021120",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 196858617,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/413607738388660224/ORtiTyOL_normal.jpeg",
"profile_sidebar_fill_color": "C0DFEC",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 662,
"profile_sidebar_border_color": "A8C7F7",
"id_str": "196858617",
"profile_background_color": "022330",
"listed_count": 12,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 4736,
"description": "Dreaming Out Loud about @Onerepublic concerts",
"friends_count": 935,
"location": "Seattle, WA",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/413607738388660224/ORtiTyOL_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/196858617/1402809494",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png",
"screen_name": "bnharris2011",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 1129,
"name": "Brett",
"notifications": false,
"url": null,
"created_at": "Thu Sep 30 02:10:27 +0000 2010",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": "21133007",
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Jan 27 22:22:36 +0000 2016",
"in_reply_to_status_id_str": "692440341732003840",
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 1620462223,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/443519565364858880/vznK48ta.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/694589502115942404/405hum8__normal.jpg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/ZQvInCqU3n",
"indices": [
0,
23
],
"expanded_url": "http://instagram.com/sabine_1993",
"display_url": "instagram.com/sabine_1993"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 584,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "1620462223",
"profile_background_color": "131516",
"listed_count": 9,
"is_translation_enabled": false,
"utc_offset": 3600,
"statuses_count": 5420,
"description": "\u2022OneRepublic/Ryan Tedder follows me\u2022 I need them like a heart needs a beat.Their lyrics are life\u271dThe good life w my idol Ryan 28.10.14;13.06.15|JT",
"friends_count": 265,
"location": "Germany",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/694589502115942404/405hum8__normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1620462223/1448164118",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/443519565364858880/vznK48ta.jpeg",
"screen_name": "Sabine_1993",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 7747,
"name": "Sabine\u26611R",
"notifications": false,
"url": "https://t.co/ZQvInCqU3n",
"created_at": "Thu Jul 25 14:00:33 +0000 2013",
"contributors_enabled": false,
"time_zone": "Berlin",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 21:58:15 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#drake #jcole #coleworld #kanyewest #kanye\n\n https://t.co/9QEtYECPwk https://t.co/vcjGI3ICZS",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695002839068860417,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "drake"
},
{
"indices": [
7,
13
],
"text": "jcole"
},
{
"indices": [
14,
24
],
"text": "coleworld"
},
{
"indices": [
25,
35
],
"text": "kanyewest"
},
{
"indices": [
36,
42
],
"text": "kanye"
}
],
"urls": [
{
"url": "https://t.co/9QEtYECPwk",
"indices": [
45,
68
],
"expanded_url": "https://www.youtube.com/watch?v=k78MGF_iO8I&LPf",
"display_url": "youtube.com/watch?v=k78MGF\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/TheRapperGuide/status/695002839068860417/photo/1",
"display_url": "pic.twitter.com/vcjGI3ICZS",
"url": "https://t.co/vcjGI3ICZS",
"media_url_https": "https://pbs.twimg.com/media/CaUlZglW0AILkLl.jpg",
"id_str": "695002837672185858",
"sizes": {
"large": {
"h": 507,
"resize": "fit",
"w": 507
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 507,
"resize": "fit",
"w": 507
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
69,
92
],
"type": "photo",
"id": 695002837672185858,
"media_url": "http://pbs.twimg.com/media/CaUlZglW0AILkLl.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695002839068860417",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3766513995,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/649719416553213956/Z8249YcF.jpg",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/667575474319523842/Vq3rWjkB_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/PluhlNfLFB",
"indices": [
0,
23
],
"expanded_url": "http://SmartRapper.com",
"display_url": "SmartRapper.com"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/PluhlNfLFB",
"indices": [
20,
43
],
"expanded_url": "http://SmartRapper.com",
"display_url": "SmartRapper.com"
}
]
}
},
"followers_count": 10741,
"profile_sidebar_border_color": "000000",
"id_str": "3766513995",
"profile_background_color": "FA743E",
"listed_count": 46,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 3340,
"description": "Unlike other sites, https://t.co/PluhlNfLFB was created by a self made artist just like you | With 14,000,000+ YouTube views and major artist writing credits",
"friends_count": 2366,
"location": "Los Angeles, CA",
"profile_link_color": "000000",
"profile_image_url": "http://pbs.twimg.com/profile_images/667575474319523842/Vq3rWjkB_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3766513995/1444269518",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/649719416553213956/Z8249YcF.jpg",
"screen_name": "TheRapperGuide",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 5897,
"name": "SmartRapper(dot)com",
"notifications": false,
"url": "https://t.co/PluhlNfLFB",
"created_at": "Fri Sep 25 02:45:24 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 21:56:04 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @KollegeKidd: #FamousDex - #Kanye | Dir. @lakafilms\nhttps://t.co/cbD6I2nEk9 https://t.co/Wr8qLogBJB",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695002595190898688,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 308000492,
"indices": [
3,
15
],
"id_str": "308000492",
"screen_name": "KollegeKidd",
"name": "KollegeKidd.com"
},
{
"id": 2837771111,
"indices": [
44,
54
],
"id_str": "2837771111",
"screen_name": "lakafilms",
"name": "Laka Films"
}
],
"hashtags": [
{
"indices": [
17,
27
],
"text": "FamousDex"
},
{
"indices": [
30,
36
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/cbD6I2nEk9",
"indices": [
55,
78
],
"expanded_url": "https://www.facebook.com/188561194527170/videos/963347080381907/?video_source=pages_finch_main_video",
"display_url": "facebook.com/18856119452717\u2026"
}
],
"media": [
{
"source_user_id": 308000492,
"source_status_id_str": "694370741073088512",
"expanded_url": "http://twitter.com/KollegeKidd/status/694370741073088512/photo/1",
"display_url": "pic.twitter.com/Wr8qLogBJB",
"url": "https://t.co/Wr8qLogBJB",
"media_url_https": "https://pbs.twimg.com/media/CaLmglUXEAI5K90.jpg",
"source_user_id_str": "308000492",
"source_status_id": 694370741073088512,
"id_str": "694370740016189442",
"sizes": {
"large": {
"h": 300,
"resize": "fit",
"w": 580
},
"small": {
"h": 175,
"resize": "fit",
"w": 340
},
"medium": {
"h": 300,
"resize": "fit",
"w": 580
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
79,
102
],
"type": "photo",
"id": 694370740016189442,
"media_url": "http://pbs.twimg.com/media/CaLmglUXEAI5K90.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3,
"id_str": "695002595190898688",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "#FamousDex - #Kanye | Dir. @lakafilms\nhttps://t.co/cbD6I2nEk9 https://t.co/Wr8qLogBJB",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695002210774708224,
"favorite_count": 5,
"source": "<a href=\"http://www.tweetcaster.com\" rel=\"nofollow\">TweetCaster for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 2837771111,
"indices": [
27,
37
],
"id_str": "2837771111",
"screen_name": "lakafilms",
"name": "Laka Films"
}
],
"hashtags": [
{
"indices": [
0,
10
],
"text": "FamousDex"
},
{
"indices": [
13,
19
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/cbD6I2nEk9",
"indices": [
38,
61
],
"expanded_url": "https://www.facebook.com/188561194527170/videos/963347080381907/?video_source=pages_finch_main_video",
"display_url": "facebook.com/18856119452717\u2026"
}
],
"media": [
{
"source_user_id": 308000492,
"source_status_id_str": "694370741073088512",
"expanded_url": "http://twitter.com/KollegeKidd/status/694370741073088512/photo/1",
"display_url": "pic.twitter.com/Wr8qLogBJB",
"url": "https://t.co/Wr8qLogBJB",
"media_url_https": "https://pbs.twimg.com/media/CaLmglUXEAI5K90.jpg",
"source_user_id_str": "308000492",
"source_status_id": 694370741073088512,
"id_str": "694370740016189442",
"sizes": {
"large": {
"h": 300,
"resize": "fit",
"w": 580
},
"small": {
"h": 175,
"resize": "fit",
"w": 340
},
"medium": {
"h": 300,
"resize": "fit",
"w": 580
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
62,
85
],
"type": "photo",
"id": 694370740016189442,
"media_url": "http://pbs.twimg.com/media/CaLmglUXEAI5K90.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3,
"id_str": "695002210774708224",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 308000492,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000051760649/88569dcfdd71550983df1af9ebdfb4e6.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000146742271/a7faddab90746749b386accc3656b145_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/TpYNAqMKaL",
"indices": [
0,
22
],
"expanded_url": "http://www.kollegekidd.com",
"display_url": "kollegekidd.com"
}
]
},
"description": {
"urls": [
{
"url": "http://t.co/SgIzLhBicG",
"indices": [
66,
88
],
"expanded_url": "http://Youtube.com/KollegeKidd",
"display_url": "Youtube.com/KollegeKidd"
},
{
"url": "http://t.co/wsB0r5rrXG",
"indices": [
117,
139
],
"expanded_url": "http://instagram.com/kollegekidd",
"display_url": "instagram.com/kollegekidd"
}
]
}
},
"followers_count": 22095,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "308000492",
"profile_background_color": "C0DEED",
"listed_count": 86,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 66207,
"description": "No. 1 For Midwest Hip Hop News & Urban Edutainment | Subscribe To http://t.co/SgIzLhBicG | Follow Us On Instagram: http://t.co/wsB0r5rrXG",
"friends_count": 2443,
"location": "Midwest",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/378800000146742271/a7faddab90746749b386accc3656b145_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/308000492/1427412378",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000051760649/88569dcfdd71550983df1af9ebdfb4e6.jpeg",
"screen_name": "KollegeKidd",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 4242,
"name": "KollegeKidd.com",
"notifications": false,
"url": "http://t.co/TpYNAqMKaL",
"created_at": "Mon May 30 17:19:40 +0000 2011",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 21:53:34 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 4050344902,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/689318218851315712/vbJWURHH_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 34,
"profile_sidebar_border_color": "C0DEED",
"id_str": "4050344902",
"profile_background_color": "C0DEED",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 88,
"description": "OnlyMyBrothers RipMichael FreeDaniel NeverLeaveMyBrothers N\u2764\ufe0f I-VII-XVI",
"friends_count": 49,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/689318218851315712/vbJWURHH_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/4050344902/1453181819",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "Lil_Devious18",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 141,
"name": "Devious Delgado",
"notifications": false,
"url": null,
"created_at": "Tue Oct 27 02:08:24 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 21:55:05 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @KollegeKidd: #FamousDex - #Kanye | Dir. @lakafilms\nhttps://t.co/cbD6I2nEk9 https://t.co/Wr8qLogBJB",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695002451825541127,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 308000492,
"indices": [
3,
15
],
"id_str": "308000492",
"screen_name": "KollegeKidd",
"name": "KollegeKidd.com"
},
{
"id": 2837771111,
"indices": [
44,
54
],
"id_str": "2837771111",
"screen_name": "lakafilms",
"name": "Laka Films"
}
],
"hashtags": [
{
"indices": [
17,
27
],
"text": "FamousDex"
},
{
"indices": [
30,
36
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/cbD6I2nEk9",
"indices": [
55,
78
],
"expanded_url": "https://www.facebook.com/188561194527170/videos/963347080381907/?video_source=pages_finch_main_video",
"display_url": "facebook.com/18856119452717\u2026"
}
],
"media": [
{
"source_user_id": 308000492,
"source_status_id_str": "694370741073088512",
"expanded_url": "http://twitter.com/KollegeKidd/status/694370741073088512/photo/1",
"display_url": "pic.twitter.com/Wr8qLogBJB",
"url": "https://t.co/Wr8qLogBJB",
"media_url_https": "https://pbs.twimg.com/media/CaLmglUXEAI5K90.jpg",
"source_user_id_str": "308000492",
"source_status_id": 694370741073088512,
"id_str": "694370740016189442",
"sizes": {
"large": {
"h": 300,
"resize": "fit",
"w": 580
},
"small": {
"h": 175,
"resize": "fit",
"w": 340
},
"medium": {
"h": 300,
"resize": "fit",
"w": 580
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
79,
102
],
"type": "photo",
"id": 694370740016189442,
"media_url": "http://pbs.twimg.com/media/CaLmglUXEAI5K90.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3,
"id_str": "695002451825541127",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "#FamousDex - #Kanye | Dir. @lakafilms\nhttps://t.co/cbD6I2nEk9 https://t.co/Wr8qLogBJB",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695002210774708224,
"favorite_count": 5,
"source": "<a href=\"http://www.tweetcaster.com\" rel=\"nofollow\">TweetCaster for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 2837771111,
"indices": [
27,
37
],
"id_str": "2837771111",
"screen_name": "lakafilms",
"name": "Laka Films"
}
],
"hashtags": [
{
"indices": [
0,
10
],
"text": "FamousDex"
},
{
"indices": [
13,
19
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/cbD6I2nEk9",
"indices": [
38,
61
],
"expanded_url": "https://www.facebook.com/188561194527170/videos/963347080381907/?video_source=pages_finch_main_video",
"display_url": "facebook.com/18856119452717\u2026"
}
],
"media": [
{
"source_user_id": 308000492,
"source_status_id_str": "694370741073088512",
"expanded_url": "http://twitter.com/KollegeKidd/status/694370741073088512/photo/1",
"display_url": "pic.twitter.com/Wr8qLogBJB",
"url": "https://t.co/Wr8qLogBJB",
"media_url_https": "https://pbs.twimg.com/media/CaLmglUXEAI5K90.jpg",
"source_user_id_str": "308000492",
"source_status_id": 694370741073088512,
"id_str": "694370740016189442",
"sizes": {
"large": {
"h": 300,
"resize": "fit",
"w": 580
},
"small": {
"h": 175,
"resize": "fit",
"w": 340
},
"medium": {
"h": 300,
"resize": "fit",
"w": 580
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
62,
85
],
"type": "photo",
"id": 694370740016189442,
"media_url": "http://pbs.twimg.com/media/CaLmglUXEAI5K90.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3,
"id_str": "695002210774708224",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 308000492,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000051760649/88569dcfdd71550983df1af9ebdfb4e6.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000146742271/a7faddab90746749b386accc3656b145_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/TpYNAqMKaL",
"indices": [
0,
22
],
"expanded_url": "http://www.kollegekidd.com",
"display_url": "kollegekidd.com"
}
]
},
"description": {
"urls": [
{
"url": "http://t.co/SgIzLhBicG",
"indices": [
66,
88
],
"expanded_url": "http://Youtube.com/KollegeKidd",
"display_url": "Youtube.com/KollegeKidd"
},
{
"url": "http://t.co/wsB0r5rrXG",
"indices": [
117,
139
],
"expanded_url": "http://instagram.com/kollegekidd",
"display_url": "instagram.com/kollegekidd"
}
]
}
},
"followers_count": 22095,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "308000492",
"profile_background_color": "C0DEED",
"listed_count": 86,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 66207,
"description": "No. 1 For Midwest Hip Hop News & Urban Edutainment | Subscribe To http://t.co/SgIzLhBicG | Follow Us On Instagram: http://t.co/wsB0r5rrXG",
"friends_count": 2443,
"location": "Midwest",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/378800000146742271/a7faddab90746749b386accc3656b145_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/308000492/1427412378",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000051760649/88569dcfdd71550983df1af9ebdfb4e6.jpeg",
"screen_name": "KollegeKidd",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 4242,
"name": "KollegeKidd.com",
"notifications": false,
"url": "http://t.co/TpYNAqMKaL",
"created_at": "Mon May 30 17:19:40 +0000 2011",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 21:53:34 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 525749717,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000104874368/022fc649f6700bd60c20257cdedabc45.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/694089086269800448/3r5aRx3j_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 404,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "525749717",
"profile_background_color": "C0DEED",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": -14400,
"statuses_count": 20288,
"description": "UGLY NIGGA WITH SOME CUTE FEATURES",
"friends_count": 377,
"location": "SC: ODD_MALACHI | IG: _MR1017",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/694089086269800448/3r5aRx3j_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/525749717/1451699627",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000104874368/022fc649f6700bd60c20257cdedabc45.png",
"screen_name": "_MR1017",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 7394,
"name": "MAL",
"notifications": false,
"url": null,
"created_at": "Thu Mar 15 21:05:04 +0000 2012",
"contributors_enabled": false,
"time_zone": "Atlantic Time (Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 21:54:31 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#FamousDex - #Kanye | Dir. @lakafilms\nhttps://t.co/cbD6I2nEk9 https://t.co/Wr8qLogBJB",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695002210774708224,
"favorite_count": 5,
"source": "<a href=\"http://www.tweetcaster.com\" rel=\"nofollow\">TweetCaster for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 2837771111,
"indices": [
27,
37
],
"id_str": "2837771111",
"screen_name": "lakafilms",
"name": "Laka Films"
}
],
"hashtags": [
{
"indices": [
0,
10
],
"text": "FamousDex"
},
{
"indices": [
13,
19
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/cbD6I2nEk9",
"indices": [
38,
61
],
"expanded_url": "https://www.facebook.com/188561194527170/videos/963347080381907/?video_source=pages_finch_main_video",
"display_url": "facebook.com/18856119452717\u2026"
}
],
"media": [
{
"source_user_id": 308000492,
"source_status_id_str": "694370741073088512",
"expanded_url": "http://twitter.com/KollegeKidd/status/694370741073088512/photo/1",
"display_url": "pic.twitter.com/Wr8qLogBJB",
"url": "https://t.co/Wr8qLogBJB",
"media_url_https": "https://pbs.twimg.com/media/CaLmglUXEAI5K90.jpg",
"source_user_id_str": "308000492",
"source_status_id": 694370741073088512,
"id_str": "694370740016189442",
"sizes": {
"large": {
"h": 300,
"resize": "fit",
"w": 580
},
"small": {
"h": 175,
"resize": "fit",
"w": 340
},
"medium": {
"h": 300,
"resize": "fit",
"w": 580
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
62,
85
],
"type": "photo",
"id": 694370740016189442,
"media_url": "http://pbs.twimg.com/media/CaLmglUXEAI5K90.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3,
"id_str": "695002210774708224",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 308000492,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000051760649/88569dcfdd71550983df1af9ebdfb4e6.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000146742271/a7faddab90746749b386accc3656b145_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/TpYNAqMKaL",
"indices": [
0,
22
],
"expanded_url": "http://www.kollegekidd.com",
"display_url": "kollegekidd.com"
}
]
},
"description": {
"urls": [
{
"url": "http://t.co/SgIzLhBicG",
"indices": [
66,
88
],
"expanded_url": "http://Youtube.com/KollegeKidd",
"display_url": "Youtube.com/KollegeKidd"
},
{
"url": "http://t.co/wsB0r5rrXG",
"indices": [
117,
139
],
"expanded_url": "http://instagram.com/kollegekidd",
"display_url": "instagram.com/kollegekidd"
}
]
}
},
"followers_count": 22095,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "308000492",
"profile_background_color": "C0DEED",
"listed_count": 86,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 66207,
"description": "No. 1 For Midwest Hip Hop News & Urban Edutainment | Subscribe To http://t.co/SgIzLhBicG | Follow Us On Instagram: http://t.co/wsB0r5rrXG",
"friends_count": 2443,
"location": "Midwest",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/378800000146742271/a7faddab90746749b386accc3656b145_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/308000492/1427412378",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000051760649/88569dcfdd71550983df1af9ebdfb4e6.jpeg",
"screen_name": "KollegeKidd",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 4242,
"name": "KollegeKidd.com",
"notifications": false,
"url": "http://t.co/TpYNAqMKaL",
"created_at": "Mon May 30 17:19:40 +0000 2011",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 21:53:34 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#kanye #kim #iFunny https://t.co/TcRZarHsxR https://t.co/8tOycMGqss",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695001989005107201,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "kanye"
},
{
"indices": [
7,
11
],
"text": "kim"
},
{
"indices": [
12,
19
],
"text": "iFunny"
}
],
"urls": [
{
"url": "https://t.co/TcRZarHsxR",
"indices": [
20,
43
],
"expanded_url": "http://ifunny.co/fun/1NB3Kbkb3",
"display_url": "ifunny.co/fun/1NB3Kbkb3"
}
],
"media": [
{
"expanded_url": "http://twitter.com/kelsi_gardner/status/695001989005107201/photo/1",
"display_url": "pic.twitter.com/8tOycMGqss",
"url": "https://t.co/8tOycMGqss",
"media_url_https": "https://pbs.twimg.com/media/CaUkoGSWIAA1Y1k.jpg",
"id_str": "695001988799537152",
"sizes": {
"large": {
"h": 820,
"resize": "fit",
"w": 703
},
"small": {
"h": 396,
"resize": "fit",
"w": 340
},
"medium": {
"h": 699,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
44,
67
],
"type": "photo",
"id": 695001988799537152,
"media_url": "http://pbs.twimg.com/media/CaUkoGSWIAA1Y1k.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "695001989005107201",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 781562886,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000060649278/b4d440d6b5ab81830956a238d53aa8c1.png",
"verified": false,
"profile_text_color": "F09090",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/678692664401920006/Y64RcX18_normal.jpg",
"profile_sidebar_fill_color": "486060",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 183,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "781562886",
"profile_background_color": "E6FAFA",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 1876,
"description": "I enjoy long walks on the beach, pi\u00f1a coladas, & foreign languages.",
"friends_count": 307,
"location": "Lebanon, Ohio",
"profile_link_color": "F28654",
"profile_image_url": "http://pbs.twimg.com/profile_images/678692664401920006/Y64RcX18_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/781562886/1450647971",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000060649278/b4d440d6b5ab81830956a238d53aa8c1.png",
"screen_name": "kelsi_gardner",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 442,
"name": "kelsi gardner",
"notifications": false,
"url": null,
"created_at": "Sun Aug 26 03:07:16 +0000 2012",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 21:52:41 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @ChrisRiggi: When you get caught having too much fun...do the Kanye #kanyewest #KANYE #KanyeBeLike #kanyeforpresident #K... https://t.co\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695001782313836544,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 132712872,
"indices": [
3,
14
],
"id_str": "132712872",
"screen_name": "ChrisRiggi",
"name": "Chris Riggi"
}
],
"hashtags": [
{
"indices": [
71,
81
],
"text": "kanyewest"
},
{
"indices": [
82,
88
],
"text": "KANYE"
},
{
"indices": [
89,
101
],
"text": "KanyeBeLike"
},
{
"indices": [
102,
120
],
"text": "kanyeforpresident"
},
{
"indices": [
121,
123
],
"text": "K"
}
],
"urls": [
{
"url": "https://t.co/NE9746K9er",
"indices": [
139,
140
],
"expanded_url": "https://vine.co/v/iJgu73D1E3A",
"display_url": "vine.co/v/iJgu73D1E3A"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "695001782313836544",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "When you get caught having too much fun...do the Kanye #kanyewest #KANYE #KanyeBeLike #kanyeforpresident #K... https://t.co/NE9746K9er",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695001743386677249,
"favorite_count": 0,
"source": "<a href=\"http://vine.co\" rel=\"nofollow\">Vine - Make a Scene</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
55,
65
],
"text": "kanyewest"
},
{
"indices": [
66,
72
],
"text": "KANYE"
},
{
"indices": [
73,
85
],
"text": "KanyeBeLike"
},
{
"indices": [
86,
104
],
"text": "kanyeforpresident"
},
{
"indices": [
105,
107
],
"text": "K"
}
],
"urls": [
{
"url": "https://t.co/NE9746K9er",
"indices": [
111,
134
],
"expanded_url": "https://vine.co/v/iJgu73D1E3A",
"display_url": "vine.co/v/iJgu73D1E3A"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "695001743386677249",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 132712872,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/476402982372655105/iNKZx5xZ.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/661278470232633344/nXMhkXM9_normal.jpg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/pyxvu1tY21",
"indices": [
0,
23
],
"expanded_url": "http://chrisriggi.com",
"display_url": "chrisriggi.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 21266,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "132712872",
"profile_background_color": "131516",
"listed_count": 56,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 4264,
"description": "Lookin for a good girl who can jump - a jumper. Is that too much to ask?",
"friends_count": 1482,
"location": "Los Angeles, CA",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/661278470232633344/nXMhkXM9_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/132712872/1435691795",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/476402982372655105/iNKZx5xZ.jpeg",
"screen_name": "ChrisRiggi",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 9925,
"name": "Chris Riggi",
"notifications": false,
"url": "https://t.co/pyxvu1tY21",
"created_at": "Wed Apr 14 00:22:30 +0000 2010",
"contributors_enabled": false,
"time_zone": "Quito",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 21:51:42 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 246669183,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif",
"verified": false,
"profile_text_color": "3C3940",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/612639774403198976/6yILHgLP_normal.jpg",
"profile_sidebar_fill_color": "95E8EC",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 262,
"profile_sidebar_border_color": "5ED4DC",
"id_str": "246669183",
"profile_background_color": "0099B9",
"listed_count": 57,
"is_translation_enabled": false,
"utc_offset": -36000,
"statuses_count": 14744,
"description": "",
"friends_count": 2146,
"location": "",
"profile_link_color": "DD2E44",
"profile_image_url": "http://pbs.twimg.com/profile_images/612639774403198976/6yILHgLP_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/246669183/1418060162",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif",
"screen_name": "jiicab",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 11752,
"name": "JoMari",
"notifications": false,
"url": null,
"created_at": "Thu Feb 03 06:55:36 +0000 2011",
"contributors_enabled": false,
"time_zone": "Hawaii",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 21:51:52 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "When you get caught having too much fun...do the Kanye #kanyewest #KANYE #KanyeBeLike #kanyeforpresident #K... https://t.co/NE9746K9er",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695001743386677249,
"favorite_count": 0,
"source": "<a href=\"http://vine.co\" rel=\"nofollow\">Vine - Make a Scene</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
55,
65
],
"text": "kanyewest"
},
{
"indices": [
66,
72
],
"text": "KANYE"
},
{
"indices": [
73,
85
],
"text": "KanyeBeLike"
},
{
"indices": [
86,
104
],
"text": "kanyeforpresident"
},
{
"indices": [
105,
107
],
"text": "K"
}
],
"urls": [
{
"url": "https://t.co/NE9746K9er",
"indices": [
111,
134
],
"expanded_url": "https://vine.co/v/iJgu73D1E3A",
"display_url": "vine.co/v/iJgu73D1E3A"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "695001743386677249",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 132712872,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/476402982372655105/iNKZx5xZ.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/661278470232633344/nXMhkXM9_normal.jpg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/pyxvu1tY21",
"indices": [
0,
23
],
"expanded_url": "http://chrisriggi.com",
"display_url": "chrisriggi.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 21266,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "132712872",
"profile_background_color": "131516",
"listed_count": 56,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 4264,
"description": "Lookin for a good girl who can jump - a jumper. Is that too much to ask?",
"friends_count": 1482,
"location": "Los Angeles, CA",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/661278470232633344/nXMhkXM9_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/132712872/1435691795",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/476402982372655105/iNKZx5xZ.jpeg",
"screen_name": "ChrisRiggi",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 9925,
"name": "Chris Riggi",
"notifications": false,
"url": "https://t.co/pyxvu1tY21",
"created_at": "Wed Apr 14 00:22:30 +0000 2010",
"contributors_enabled": false,
"time_zone": "Quito",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 21:51:42 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "@Simbaaa_k3 facts #swish #kanye #ye",
"is_quote_status": false,
"in_reply_to_status_id": 695000812540583936,
"id": 695001074193661952,
"favorite_count": 1,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 885180704,
"indices": [
0,
11
],
"id_str": "885180704",
"screen_name": "Simbaaa_k3",
"name": "Simar"
}
],
"hashtags": [
{
"indices": [
18,
24
],
"text": "swish"
},
{
"indices": [
25,
31
],
"text": "kanye"
},
{
"indices": [
32,
35
],
"text": "ye"
}
],
"urls": []
},
"in_reply_to_screen_name": "Simbaaa_k3",
"in_reply_to_user_id": 885180704,
"retweet_count": 0,
"id_str": "695001074193661952",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 822176804,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/681284722937475074/0OxZTEVw_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/oZNG9EDAuB",
"indices": [
0,
22
],
"expanded_url": "http://Nike.com",
"display_url": "Nike.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 314,
"profile_sidebar_border_color": "000000",
"id_str": "822176804",
"profile_background_color": "000000",
"listed_count": 2,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 8627,
"description": "These hoes ain't royals // xo",
"friends_count": 576,
"location": "",
"profile_link_color": "3B94D9",
"profile_image_url": "http://pbs.twimg.com/profile_images/681284722937475074/0OxZTEVw_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/822176804/1452291562",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "k_singh1997",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 5203,
"name": "KashXO",
"notifications": false,
"url": "http://t.co/oZNG9EDAuB",
"created_at": "Thu Sep 13 20:59:20 +0000 2012",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": "885180704",
"lang": "en",
"created_at": "Wed Feb 03 21:49:03 +0000 2016",
"in_reply_to_status_id_str": "695000812540583936",
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @MusicGxd: They did @kanyewest dirty! \ud83d\ude02\n\n#kanye #DJKhaled #funny #pictures https://t.co/XO3KBsUQVO",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 695001004811665412,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 4748371782,
"indices": [
3,
12
],
"id_str": "4748371782",
"screen_name": "MusicGxd",
"name": "TheGod"
},
{
"id": 169686021,
"indices": [
23,
33
],
"id_str": "169686021",
"screen_name": "kanyewest",
"name": "KANYE WEST"
}
],
"hashtags": [
{
"indices": [
44,
50
],
"text": "kanye"
},
{
"indices": [
51,
60
],
"text": "DJKhaled"
},
{
"indices": [
61,
67
],
"text": "funny"
},
{
"indices": [
68,
77
],
"text": "pictures"
}
],
"urls": [],
"media": [
{
"source_user_id": 4748371782,
"source_status_id_str": "693531675087605760",
"expanded_url": "http://twitter.com/MusicGxd/status/693531675087605760/photo/1",
"display_url": "pic.twitter.com/XO3KBsUQVO",
"url": "https://t.co/XO3KBsUQVO",
"media_url_https": "https://pbs.twimg.com/media/CZ_rYgTUkAAtTjY.jpg",
"source_user_id_str": "4748371782",
"source_status_id": 693531675087605760,
"id_str": "693531673858707456",
"sizes": {
"small": {
"h": 322,
"resize": "fit",
"w": 340
},
"large": {
"h": 599,
"resize": "fit",
"w": 632
},
"medium": {
"h": 568,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
78,
101
],
"type": "photo",
"id": 693531673858707456,
"media_url": "http://pbs.twimg.com/media/CZ_rYgTUkAAtTjY.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "695001004811665412",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "They did @kanyewest dirty! \ud83d\ude02\n\n#kanye #DJKhaled #funny #pictures https://t.co/XO3KBsUQVO",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 693531675087605760,
"favorite_count": 3,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 169686021,
"indices": [
9,
19
],
"id_str": "169686021",
"screen_name": "kanyewest",
"name": "KANYE WEST"
}
],
"hashtags": [
{
"indices": [
30,
36
],
"text": "kanye"
},
{
"indices": [
37,
46
],
"text": "DJKhaled"
},
{
"indices": [
47,
53
],
"text": "funny"
},
{
"indices": [
54,
63
],
"text": "pictures"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/MusicGxd/status/693531675087605760/photo/1",
"display_url": "pic.twitter.com/XO3KBsUQVO",
"url": "https://t.co/XO3KBsUQVO",
"media_url_https": "https://pbs.twimg.com/media/CZ_rYgTUkAAtTjY.jpg",
"id_str": "693531673858707456",
"sizes": {
"small": {
"h": 322,
"resize": "fit",
"w": 340
},
"large": {
"h": 599,
"resize": "fit",
"w": 632
},
"medium": {
"h": 568,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
64,
87
],
"type": "photo",
"id": 693531673858707456,
"media_url": "http://pbs.twimg.com/media/CZ_rYgTUkAAtTjY.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "693531675087605760",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 4748371782,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/691743360684396544/Ui-MuxnU_normal.jpg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 1006,
"profile_sidebar_border_color": "EEEEEE",
"id_str": "4748371782",
"profile_background_color": "131516",
"listed_count": 6,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 497,
"description": "I post shit that i like. Specially music and funny videos. Retweet if you like what i post, anyway\nfollow The God to be guided to greatness.",
"friends_count": 640,
"location": "Houston, TX",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/691743360684396544/Ui-MuxnU_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/4748371782/1454013551",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif",
"screen_name": "MusicGxd",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 13305,
"name": "TheGod",
"notifications": false,
"url": null,
"created_at": "Tue Jan 12 13:59:03 +0000 2016",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Sat Jan 30 20:30:11 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2520793596,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/694963563140681729/pfqrDqPh_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 72,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2520793596",
"profile_background_color": "C0DEED",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 73,
"description": "African warrior in training//Ghanaian",
"friends_count": 141,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/694963563140681729/pfqrDqPh_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2520793596/1452362360",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "FranHYB",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 104,
"name": "Francis",
"notifications": false,
"url": null,
"created_at": "Sat May 24 16:10:06 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 21:48:46 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @bnharris2011: @OneRepublic Ryan is unimpressed. #Kanye https://t.co/RWVGMkSawQ",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694999573698371585,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 196858617,
"indices": [
3,
16
],
"id_str": "196858617",
"screen_name": "bnharris2011",
"name": "Brett"
},
{
"id": 21133007,
"indices": [
18,
30
],
"id_str": "21133007",
"screen_name": "OneRepublic",
"name": "OneRepublic"
}
],
"hashtags": [
{
"indices": [
52,
58
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/RWVGMkSawQ",
"indices": [
59,
82
],
"expanded_url": "http://twitter.com/bnharris2011/status/692472805062021120/photo/1",
"display_url": "pic.twitter.com/RWVGMkSawQ"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 6,
"id_str": "694999573698371585",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "@OneRepublic Ryan is unimpressed. #Kanye https://t.co/RWVGMkSawQ",
"is_quote_status": false,
"in_reply_to_status_id": 692440341732003840,
"id": 692472805062021120,
"favorite_count": 12,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 21133007,
"indices": [
0,
12
],
"id_str": "21133007",
"screen_name": "OneRepublic",
"name": "OneRepublic"
}
],
"hashtags": [
{
"indices": [
34,
40
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/RWVGMkSawQ",
"indices": [
41,
64
],
"expanded_url": "http://twitter.com/bnharris2011/status/692472805062021120/photo/1",
"display_url": "pic.twitter.com/RWVGMkSawQ"
}
]
},
"in_reply_to_screen_name": "OneRepublic",
"in_reply_to_user_id": 21133007,
"retweet_count": 6,
"id_str": "692472805062021120",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 196858617,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/413607738388660224/ORtiTyOL_normal.jpeg",
"profile_sidebar_fill_color": "C0DFEC",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 662,
"profile_sidebar_border_color": "A8C7F7",
"id_str": "196858617",
"profile_background_color": "022330",
"listed_count": 12,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 4736,
"description": "Dreaming Out Loud about @Onerepublic concerts",
"friends_count": 935,
"location": "Seattle, WA",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/413607738388660224/ORtiTyOL_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/196858617/1402809494",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png",
"screen_name": "bnharris2011",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 1129,
"name": "Brett",
"notifications": false,
"url": null,
"created_at": "Thu Sep 30 02:10:27 +0000 2010",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": "21133007",
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Jan 27 22:22:36 +0000 2016",
"in_reply_to_status_id_str": "692440341732003840",
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3384802017,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/623213817443581952/LHCzZeNS_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 63,
"profile_sidebar_border_color": "C0DEED",
"id_str": "3384802017",
"profile_background_color": "C0DEED",
"listed_count": 2,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 1791,
"description": "",
"friends_count": 68,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/623213817443581952/LHCzZeNS_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3384802017/1437420771",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "julcia6784",
"lang": "pl",
"profile_background_tile": false,
"favourites_count": 196,
"name": "julcia",
"notifications": false,
"url": null,
"created_at": "Mon Jul 20 19:21:47 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 21:43:05 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Would You Rather? #1 - I'm Kanye West #WouldYouRather #Kanye https://t.co/7dIrcSQh9P",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694999555507646465,
"favorite_count": 0,
"source": "<a href=\"http://www.google.com/\" rel=\"nofollow\">Google</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
38,
53
],
"text": "WouldYouRather"
},
{
"indices": [
54,
60
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/7dIrcSQh9P",
"indices": [
61,
84
],
"expanded_url": "http://youtu.be/TcfF_mmT7ow?a",
"display_url": "youtu.be/TcfF_mmT7ow?a"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694999555507646465",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 1444180284,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/525770368376922114/PXndhu0r_normal.jpeg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/IeSETtEAQI",
"indices": [
0,
22
],
"expanded_url": "http://www.youtube.com/benjaminh428",
"display_url": "youtube.com/benjaminh428"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 473,
"profile_sidebar_border_color": "C0DEED",
"id_str": "1444180284",
"profile_background_color": "C0DEED",
"listed_count": 2,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 1081,
"description": "",
"friends_count": 40,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/525770368376922114/PXndhu0r_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1444180284/1414188468",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "Benjaminh428",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 9,
"name": "Benjaminh428",
"notifications": false,
"url": "http://t.co/IeSETtEAQI",
"created_at": "Mon May 20 16:31:37 +0000 2013",
"contributors_enabled": false,
"time_zone": "London",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 21:43:01 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @bnharris2011: @OneRepublic Ryan is unimpressed. #Kanye https://t.co/RWVGMkSawQ",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694999325907279873,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 196858617,
"indices": [
3,
16
],
"id_str": "196858617",
"screen_name": "bnharris2011",
"name": "Brett"
},
{
"id": 21133007,
"indices": [
18,
30
],
"id_str": "21133007",
"screen_name": "OneRepublic",
"name": "OneRepublic"
}
],
"hashtags": [
{
"indices": [
52,
58
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/RWVGMkSawQ",
"indices": [
59,
82
],
"expanded_url": "http://twitter.com/bnharris2011/status/692472805062021120/photo/1",
"display_url": "pic.twitter.com/RWVGMkSawQ"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 6,
"id_str": "694999325907279873",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "@OneRepublic Ryan is unimpressed. #Kanye https://t.co/RWVGMkSawQ",
"is_quote_status": false,
"in_reply_to_status_id": 692440341732003840,
"id": 692472805062021120,
"favorite_count": 12,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 21133007,
"indices": [
0,
12
],
"id_str": "21133007",
"screen_name": "OneRepublic",
"name": "OneRepublic"
}
],
"hashtags": [
{
"indices": [
34,
40
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/RWVGMkSawQ",
"indices": [
41,
64
],
"expanded_url": "http://twitter.com/bnharris2011/status/692472805062021120/photo/1",
"display_url": "pic.twitter.com/RWVGMkSawQ"
}
]
},
"in_reply_to_screen_name": "OneRepublic",
"in_reply_to_user_id": 21133007,
"retweet_count": 6,
"id_str": "692472805062021120",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 196858617,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/413607738388660224/ORtiTyOL_normal.jpeg",
"profile_sidebar_fill_color": "C0DFEC",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 662,
"profile_sidebar_border_color": "A8C7F7",
"id_str": "196858617",
"profile_background_color": "022330",
"listed_count": 12,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 4736,
"description": "Dreaming Out Loud about @Onerepublic concerts",
"friends_count": 935,
"location": "Seattle, WA",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/413607738388660224/ORtiTyOL_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/196858617/1402809494",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png",
"screen_name": "bnharris2011",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 1129,
"name": "Brett",
"notifications": false,
"url": null,
"created_at": "Thu Sep 30 02:10:27 +0000 2010",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": "21133007",
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Jan 27 22:22:36 +0000 2016",
"in_reply_to_status_id_str": "692440341732003840",
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 2960631473,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/605053039209259008/iO82kNqg_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 222,
"profile_sidebar_border_color": "000000",
"id_str": "2960631473",
"profile_background_color": "000000",
"listed_count": 4,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 2687,
"description": "\u2022 OneRepublic \u2022 Imagine Dragons \u2022 Ryan Tedder \u2022 Seafret \u2022 Marvel \u2022 Got \u2022 first concert in my life: IMAGINE DRAGONS 11.10.15 \u2022 MUSIC IS MY PERSONAL CURE",
"friends_count": 349,
"location": "Germany",
"profile_link_color": "FFCC4D",
"profile_image_url": "http://pbs.twimg.com/profile_images/605053039209259008/iO82kNqg_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2960631473/1433090859",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "republican1999",
"lang": "pl",
"profile_background_tile": false,
"favourites_count": 4217,
"name": "Weronika\u2665 Wildfire \u2665",
"notifications": false,
"url": null,
"created_at": "Sun Jan 04 18:12:47 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 21:42:06 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @Nickelback: Good news: we're working on new music. Bad news for us: @kanyewest 'Swish' will be the best album of all time. #SWISH #Kanye",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694999301144104965,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 29546364,
"indices": [
3,
14
],
"id_str": "29546364",
"screen_name": "Nickelback",
"name": "Nickelback"
},
{
"id": 169686021,
"indices": [
72,
82
],
"id_str": "169686021",
"screen_name": "kanyewest",
"name": "KANYE WEST"
}
],
"hashtags": [
{
"indices": [
127,
133
],
"text": "SWISH"
},
{
"indices": [
134,
140
],
"text": "Kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3105,
"id_str": "694999301144104965",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Good news: we're working on new music. Bad news for us: @kanyewest 'Swish' will be the best album of all time. #SWISH #Kanye",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 691676834891563008,
"favorite_count": 6031,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 169686021,
"indices": [
56,
66
],
"id_str": "169686021",
"screen_name": "kanyewest",
"name": "KANYE WEST"
}
],
"hashtags": [
{
"indices": [
111,
117
],
"text": "SWISH"
},
{
"indices": [
118,
124
],
"text": "Kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3105,
"id_str": "691676834891563008",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 29546364,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/431818238184280064/WvVeaods.jpeg",
"verified": true,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/506833000760213504/KpfewtuL_normal.jpeg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/eZLsuVQUJE",
"indices": [
0,
23
],
"expanded_url": "http://www.nickelback.com",
"display_url": "nickelback.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 750181,
"profile_sidebar_border_color": "000000",
"id_str": "29546364",
"profile_background_color": "000000",
"listed_count": 3572,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 9424,
"description": "#Nickelback2016",
"friends_count": 7,
"location": "",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/506833000760213504/KpfewtuL_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/29546364/1435080292",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/431818238184280064/WvVeaods.jpeg",
"screen_name": "Nickelback",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 337,
"name": "Nickelback",
"notifications": false,
"url": "https://t.co/eZLsuVQUJE",
"created_at": "Tue Apr 07 21:11:47 +0000 2009",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Mon Jan 25 17:39:42 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 69919928,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/471352272819986432/2tryQCYU.jpeg",
"verified": false,
"profile_text_color": "3E4415",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/690531215493980160/Z51EG08J_normal.jpg",
"profile_sidebar_fill_color": "FFFFFF",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/GQk8Tqo8ZF",
"indices": [
0,
23
],
"expanded_url": "http://greeneyedandsnide.blogspot.com/",
"display_url": "greeneyedandsnide.blogspot.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 780,
"profile_sidebar_border_color": "000000",
"id_str": "69919928",
"profile_background_color": "AB636D",
"listed_count": 6,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 42290,
"description": "a little me(n)tal.",
"friends_count": 520,
"location": "i live on East",
"profile_link_color": "70516B",
"profile_image_url": "http://pbs.twimg.com/profile_images/690531215493980160/Z51EG08J_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/69919928/1454382980",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/471352272819986432/2tryQCYU.jpeg",
"screen_name": "LaBeeuhtriixx",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 11931,
"name": "mz KILLista\u2620",
"notifications": false,
"url": "https://t.co/GQk8Tqo8ZF",
"created_at": "Sat Aug 29 17:45:00 +0000 2009",
"contributors_enabled": false,
"time_zone": "Quito",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 21:42:00 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "In order for it to be one of the greatest it's gonna be better than My beautiful dark twisted fantasy so we'll see #kanye",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694998357513732096,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
115,
121
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694998357513732096",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 1263283388,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/692750230224244736/_U4D7YeL_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 17,
"profile_sidebar_border_color": "C0DEED",
"id_str": "1263283388",
"profile_background_color": "C0DEED",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 686,
"description": "",
"friends_count": 47,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/692750230224244736/_U4D7YeL_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1263283388/1363138272",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "DSsavone",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 688,
"name": "Iconic_savant",
"notifications": false,
"url": null,
"created_at": "Wed Mar 13 01:20:15 +0000 2013",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 21:38:15 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @Nickelback: Good news: we're working on new music. Bad news for us: @kanyewest 'Swish' will be the best album of all time. #SWISH #Kanye",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694997935453511680,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 29546364,
"indices": [
3,
14
],
"id_str": "29546364",
"screen_name": "Nickelback",
"name": "Nickelback"
},
{
"id": 169686021,
"indices": [
72,
82
],
"id_str": "169686021",
"screen_name": "kanyewest",
"name": "KANYE WEST"
}
],
"hashtags": [
{
"indices": [
127,
133
],
"text": "SWISH"
},
{
"indices": [
134,
140
],
"text": "Kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3105,
"id_str": "694997935453511680",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Good news: we're working on new music. Bad news for us: @kanyewest 'Swish' will be the best album of all time. #SWISH #Kanye",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 691676834891563008,
"favorite_count": 6031,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 169686021,
"indices": [
56,
66
],
"id_str": "169686021",
"screen_name": "kanyewest",
"name": "KANYE WEST"
}
],
"hashtags": [
{
"indices": [
111,
117
],
"text": "SWISH"
},
{
"indices": [
118,
124
],
"text": "Kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3105,
"id_str": "691676834891563008",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 29546364,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/431818238184280064/WvVeaods.jpeg",
"verified": true,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/506833000760213504/KpfewtuL_normal.jpeg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/eZLsuVQUJE",
"indices": [
0,
23
],
"expanded_url": "http://www.nickelback.com",
"display_url": "nickelback.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 750181,
"profile_sidebar_border_color": "000000",
"id_str": "29546364",
"profile_background_color": "000000",
"listed_count": 3572,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 9424,
"description": "#Nickelback2016",
"friends_count": 7,
"location": "",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/506833000760213504/KpfewtuL_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/29546364/1435080292",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/431818238184280064/WvVeaods.jpeg",
"screen_name": "Nickelback",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 337,
"name": "Nickelback",
"notifications": false,
"url": "https://t.co/eZLsuVQUJE",
"created_at": "Tue Apr 07 21:11:47 +0000 2009",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Mon Jan 25 17:39:42 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 234499163,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/307484494/x1ff79ddeab93976f182196f6887d1e1.jpg",
"verified": false,
"profile_text_color": "3D1957",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/690388130789232641/KkzCKogk_normal.jpg",
"profile_sidebar_fill_color": "7AC3EE",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 742,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "234499163",
"profile_background_color": "642D8B",
"listed_count": 4,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 27824,
"description": "20 | Macedonian | The Ohio State University",
"friends_count": 411,
"location": "Columbus, Ohio",
"profile_link_color": "ABB8C2",
"profile_image_url": "http://pbs.twimg.com/profile_images/690388130789232641/KkzCKogk_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/234499163/1428684635",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/307484494/x1ff79ddeab93976f182196f6887d1e1.jpg",
"screen_name": "IvanaInvincible",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 12028,
"name": "Ivana Bogdanovska",
"notifications": false,
"url": null,
"created_at": "Wed Jan 05 20:23:07 +0000 2011",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 21:36:34 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @ThePerezHilton: Enjoy my #AmberRose impersonation as we talk #Kanye drama on my latest podcast! Listen at https://t.co/b9XIjrZj0P https\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694997899575476224,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 3911239745,
"indices": [
3,
18
],
"id_str": "3911239745",
"screen_name": "ThePerezHilton",
"name": "Perez"
}
],
"hashtags": [
{
"indices": [
29,
39
],
"text": "AmberRose"
},
{
"indices": [
65,
71
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/b9XIjrZj0P",
"indices": [
110,
133
],
"expanded_url": "http://Play.it/Perez",
"display_url": "Play.it/Perez"
}
],
"media": [
{
"source_user_id": 3911239745,
"source_status_id_str": "694976350722117634",
"expanded_url": "http://twitter.com/ThePerezHilton/status/694976350722117634/video/1",
"display_url": "pic.twitter.com/uY8z30VLgE",
"url": "https://t.co/uY8z30VLgE",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg",
"source_user_id_str": "3911239745",
"source_status_id": 694976350722117634,
"id_str": "694975873653538817",
"sizes": {
"small": {
"h": 191,
"resize": "fit",
"w": 340
},
"large": {
"h": 576,
"resize": "fit",
"w": 1024
},
"medium": {
"h": 338,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
139,
140
],
"type": "photo",
"id": 694975873653538817,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 8,
"id_str": "694997899575476224",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Enjoy my #AmberRose impersonation as we talk #Kanye drama on my latest podcast! Listen at https://t.co/b9XIjrZj0P https://t.co/uY8z30VLgE",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694976350722117634,
"favorite_count": 33,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
9,
19
],
"text": "AmberRose"
},
{
"indices": [
45,
51
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/b9XIjrZj0P",
"indices": [
90,
113
],
"expanded_url": "http://Play.it/Perez",
"display_url": "Play.it/Perez"
}
],
"media": [
{
"expanded_url": "http://twitter.com/ThePerezHilton/status/694976350722117634/video/1",
"display_url": "pic.twitter.com/uY8z30VLgE",
"url": "https://t.co/uY8z30VLgE",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg",
"id_str": "694975873653538817",
"sizes": {
"small": {
"h": 191,
"resize": "fit",
"w": 340
},
"large": {
"h": 576,
"resize": "fit",
"w": 1024
},
"medium": {
"h": 338,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
114,
137
],
"type": "photo",
"id": 694975873653538817,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 8,
"id_str": "694976350722117634",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 3911239745,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": true,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/668948150925721601/UlmmjRS0_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/h0xBEs8dmD",
"indices": [
0,
23
],
"expanded_url": "http://www.PerezHilton.com",
"display_url": "PerezHilton.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 18912,
"profile_sidebar_border_color": "000000",
"id_str": "3911239745",
"profile_background_color": "000000",
"listed_count": 59,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 4556,
"description": "This is the personal account for Perez Hilton. He's a proud dad and founder of one of the most famous websites in the world. Follow it at @PerezHilton",
"friends_count": 670,
"location": "Manhattan, NY",
"profile_link_color": "F5ABB5",
"profile_image_url": "http://pbs.twimg.com/profile_images/668948150925721601/UlmmjRS0_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3911239745/1446500258",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "ThePerezHilton",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 14202,
"name": "Perez",
"notifications": false,
"url": "https://t.co/h0xBEs8dmD",
"created_at": "Fri Oct 09 18:29:57 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:10:48 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 3395938054,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/691649020423442432/P1KNxeYM_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 121,
"profile_sidebar_border_color": "000000",
"id_str": "3395938054",
"profile_background_color": "000000",
"listed_count": 9,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 3877,
"description": "I'm a free spirit | defying prejudice and ignorance",
"friends_count": 40,
"location": " Brazil",
"profile_link_color": "89C9FA",
"profile_image_url": "http://pbs.twimg.com/profile_images/691649020423442432/P1KNxeYM_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3395938054/1454209990",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "brazleonardo12",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 2700,
"name": "Leonardo Braz",
"notifications": false,
"url": null,
"created_at": "Thu Jul 30 18:13:49 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 21:36:26 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#ValentinesDay #Humor #JamesHarden #funny #Kanye #Wizkhalifa https://t.co/sZqUCc0NOY",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694997666141462529,
"favorite_count": 0,
"source": "<a href=\"http://instagram.com\" rel=\"nofollow\">Instagram</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
14
],
"text": "ValentinesDay"
},
{
"indices": [
15,
21
],
"text": "Humor"
},
{
"indices": [
22,
34
],
"text": "JamesHarden"
},
{
"indices": [
35,
41
],
"text": "funny"
},
{
"indices": [
42,
48
],
"text": "Kanye"
},
{
"indices": [
49,
60
],
"text": "Wizkhalifa"
}
],
"urls": [
{
"url": "https://t.co/sZqUCc0NOY",
"indices": [
61,
84
],
"expanded_url": "https://www.instagram.com/p/BBVuDSqFeUR5acwowA4moXxOXDqJxTZaF2ibiA0/",
"display_url": "instagram.com/p/BBVuDSqFeUR5\u2026"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694997666141462529",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 155865124,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/691305474830966784/KqUz4OcJ_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 1313,
"profile_sidebar_border_color": "C0DEED",
"id_str": "155865124",
"profile_background_color": "C0DEED",
"listed_count": 10,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 28124,
"description": "Singer, Songwriter, Arranger, I \u2764 Faith Evans #Incomparable #Faithfuls #Faith20",
"friends_count": 1300,
"location": "DMV",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/691305474830966784/KqUz4OcJ_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/155865124/1448974922",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "jRenzy",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 420,
"name": "\u2728\u264b Jamie Renzy \u264b\u2728",
"notifications": false,
"url": null,
"created_at": "Tue Jun 15 10:44:21 +0000 2010",
"contributors_enabled": false,
"time_zone": "America/New_York",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 21:35:30 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#whip #kanye #stop #LOL https://t.co/ME3ll0h0GJ https://t.co/nwKhMQCNWz",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694996364837531649,
"favorite_count": 0,
"source": "<a href=\"http://bestofvine.org\" rel=\"nofollow\">bestofvine</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
5
],
"text": "whip"
},
{
"indices": [
6,
12
],
"text": "kanye"
},
{
"indices": [
13,
18
],
"text": "stop"
},
{
"indices": [
19,
23
],
"text": "LOL"
}
],
"urls": [
{
"url": "https://t.co/ME3ll0h0GJ",
"indices": [
24,
47
],
"expanded_url": "http://bestofvine.org/v/486737/whip-kanye-stop-lol",
"display_url": "bestofvine.org/v/486737/whip-\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/bestofvineorg/status/694996364837531649/photo/1",
"display_url": "pic.twitter.com/nwKhMQCNWz",
"url": "https://t.co/nwKhMQCNWz",
"media_url_https": "https://pbs.twimg.com/media/CaUfgvJVAAADXR9.jpg",
"id_str": "694996364770476032",
"sizes": {
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"large": {
"h": 480,
"resize": "fit",
"w": 480
},
"medium": {
"h": 480,
"resize": "fit",
"w": 480
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
48,
71
],
"type": "photo",
"id": 694996364770476032,
"media_url": "http://pbs.twimg.com/media/CaUfgvJVAAADXR9.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694996364837531649",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 1961195778,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif",
"verified": false,
"profile_text_color": "666666",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000597285168/f424f51acb1929536ba3e30e9c856e40_normal.png",
"profile_sidebar_fill_color": "252429",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/TXYybs0Yf6",
"indices": [
0,
22
],
"expanded_url": "http://bestofvine.org",
"display_url": "bestofvine.org"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 1341,
"profile_sidebar_border_color": "181A1E",
"id_str": "1961195778",
"profile_background_color": "1A1B1F",
"listed_count": 1484,
"is_translation_enabled": false,
"utc_offset": 10800,
"statuses_count": 314420,
"description": "",
"friends_count": 0,
"location": "",
"profile_link_color": "2FC2EF",
"profile_image_url": "http://pbs.twimg.com/profile_images/378800000597285168/f424f51acb1929536ba3e30e9c856e40_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1961195778/1381787657",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif",
"screen_name": "bestofvineorg",
"lang": "tr",
"profile_background_tile": false,
"favourites_count": 0,
"name": "Best of Vine",
"notifications": false,
"url": "http://t.co/TXYybs0Yf6",
"created_at": "Mon Oct 14 19:39:22 +0000 2013",
"contributors_enabled": false,
"time_zone": "Baghdad",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 21:30:20 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @Nickelback: Good news: we're working on new music. Bad news for us: @kanyewest 'Swish' will be the best album of all time. #SWISH #Kanye",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694996331635539969,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 29546364,
"indices": [
3,
14
],
"id_str": "29546364",
"screen_name": "Nickelback",
"name": "Nickelback"
},
{
"id": 169686021,
"indices": [
72,
82
],
"id_str": "169686021",
"screen_name": "kanyewest",
"name": "KANYE WEST"
}
],
"hashtags": [
{
"indices": [
127,
133
],
"text": "SWISH"
},
{
"indices": [
134,
140
],
"text": "Kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3105,
"id_str": "694996331635539969",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Good news: we're working on new music. Bad news for us: @kanyewest 'Swish' will be the best album of all time. #SWISH #Kanye",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 691676834891563008,
"favorite_count": 6031,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 169686021,
"indices": [
56,
66
],
"id_str": "169686021",
"screen_name": "kanyewest",
"name": "KANYE WEST"
}
],
"hashtags": [
{
"indices": [
111,
117
],
"text": "SWISH"
},
{
"indices": [
118,
124
],
"text": "Kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3105,
"id_str": "691676834891563008",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 29546364,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/431818238184280064/WvVeaods.jpeg",
"verified": true,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/506833000760213504/KpfewtuL_normal.jpeg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/eZLsuVQUJE",
"indices": [
0,
23
],
"expanded_url": "http://www.nickelback.com",
"display_url": "nickelback.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 750181,
"profile_sidebar_border_color": "000000",
"id_str": "29546364",
"profile_background_color": "000000",
"listed_count": 3572,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 9424,
"description": "#Nickelback2016",
"friends_count": 7,
"location": "",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/506833000760213504/KpfewtuL_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/29546364/1435080292",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/431818238184280064/WvVeaods.jpeg",
"screen_name": "Nickelback",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 337,
"name": "Nickelback",
"notifications": false,
"url": "https://t.co/eZLsuVQUJE",
"created_at": "Tue Apr 07 21:11:47 +0000 2009",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Mon Jan 25 17:39:42 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 600676837,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif",
"verified": false,
"profile_text_color": "666666",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/678785926764580865/apsGyBI7_normal.jpg",
"profile_sidebar_fill_color": "252429",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 1216,
"profile_sidebar_border_color": "181A1E",
"id_str": "600676837",
"profile_background_color": "1A1B1F",
"listed_count": 3,
"is_translation_enabled": false,
"utc_offset": -14400,
"statuses_count": 27440,
"description": "part crazy cat man, part music lover // @megaann_12 is the Rey to my BB-8",
"friends_count": 330,
"location": "Columbus, OH",
"profile_link_color": "2FC2EF",
"profile_image_url": "http://pbs.twimg.com/profile_images/678785926764580865/apsGyBI7_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/600676837/1443309983",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif",
"screen_name": "aniafc",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 9086,
"name": "logan",
"notifications": false,
"url": null,
"created_at": "Wed Jun 06 04:29:44 +0000 2012",
"contributors_enabled": false,
"time_zone": "Atlantic Time (Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 21:30:12 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#Kanye #West Launches Humility Tour 2016 With Shocking Confession https://t.co/4RzeAzOZv5 https://t.co/VMDmPG4ySS",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694996152484233216,
"favorite_count": 0,
"source": "<a href=\"http://jenkers.com/en\" rel=\"nofollow\">Jenkers Eng Posting</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "Kanye"
},
{
"indices": [
7,
12
],
"text": "West"
}
],
"urls": [
{
"url": "https://t.co/4RzeAzOZv5",
"indices": [
66,
89
],
"expanded_url": "http://jenke.rs/Ip5q3N",
"display_url": "jenke.rs/Ip5q3N"
}
],
"media": [
{
"expanded_url": "http://twitter.com/jenkers_en/status/694996152484233216/photo/1",
"display_url": "pic.twitter.com/VMDmPG4ySS",
"url": "https://t.co/VMDmPG4ySS",
"media_url_https": "https://pbs.twimg.com/media/CaUfUNVWIAEhOU2.jpg",
"id_str": "694996149535645697",
"sizes": {
"large": {
"h": 399,
"resize": "fit",
"w": 329
},
"small": {
"h": 399,
"resize": "fit",
"w": 329
},
"medium": {
"h": 399,
"resize": "fit",
"w": 329
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
90,
113
],
"type": "photo",
"id": 694996149535645697,
"media_url": "http://pbs.twimg.com/media/CaUfUNVWIAEhOU2.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694996152484233216",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 3096702665,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/588324718677254145/-y5BbeY4_normal.png",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/dszguAvPxs",
"indices": [
0,
22
],
"expanded_url": "http://jenkers.com/en",
"display_url": "jenkers.com/en"
}
]
},
"description": {
"urls": [
{
"url": "http://t.co/vNcAYp06kJ",
"indices": [
24,
46
],
"expanded_url": "http://facebook.com/824669374284075",
"display_url": "facebook.com/824669374284075"
},
{
"url": "http://t.co/0ZBItSzRAg",
"indices": [
47,
69
],
"expanded_url": "http://vk.com/jenkers_en",
"display_url": "vk.com/jenkers_en"
}
]
}
},
"followers_count": 967,
"profile_sidebar_border_color": "000000",
"id_str": "3096702665",
"profile_background_color": "000000",
"listed_count": 564,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 172302,
"description": "Jenkers connecting news http://t.co/vNcAYp06kJ http://t.co/0ZBItSzRAg",
"friends_count": 238,
"location": "San Francisco",
"profile_link_color": "0777A0",
"profile_image_url": "http://pbs.twimg.com/profile_images/588324718677254145/-y5BbeY4_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3096702665/1426769769",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "jenkers_en",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 0,
"name": "Jenkers News (ENG)",
"notifications": false,
"url": "http://t.co/dszguAvPxs",
"created_at": "Thu Mar 19 12:47:40 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 21:29:29 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @Nickelback: Good news: we're working on new music. Bad news for us: @kanyewest 'Swish' will be the best album of all time. #SWISH #Kanye",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694995941091319808,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 29546364,
"indices": [
3,
14
],
"id_str": "29546364",
"screen_name": "Nickelback",
"name": "Nickelback"
},
{
"id": 169686021,
"indices": [
72,
82
],
"id_str": "169686021",
"screen_name": "kanyewest",
"name": "KANYE WEST"
}
],
"hashtags": [
{
"indices": [
127,
133
],
"text": "SWISH"
},
{
"indices": [
134,
140
],
"text": "Kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3105,
"id_str": "694995941091319808",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Good news: we're working on new music. Bad news for us: @kanyewest 'Swish' will be the best album of all time. #SWISH #Kanye",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 691676834891563008,
"favorite_count": 6031,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 169686021,
"indices": [
56,
66
],
"id_str": "169686021",
"screen_name": "kanyewest",
"name": "KANYE WEST"
}
],
"hashtags": [
{
"indices": [
111,
117
],
"text": "SWISH"
},
{
"indices": [
118,
124
],
"text": "Kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3105,
"id_str": "691676834891563008",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 29546364,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/431818238184280064/WvVeaods.jpeg",
"verified": true,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/506833000760213504/KpfewtuL_normal.jpeg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/eZLsuVQUJE",
"indices": [
0,
23
],
"expanded_url": "http://www.nickelback.com",
"display_url": "nickelback.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 750181,
"profile_sidebar_border_color": "000000",
"id_str": "29546364",
"profile_background_color": "000000",
"listed_count": 3572,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 9424,
"description": "#Nickelback2016",
"friends_count": 7,
"location": "",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/506833000760213504/KpfewtuL_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/29546364/1435080292",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/431818238184280064/WvVeaods.jpeg",
"screen_name": "Nickelback",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 337,
"name": "Nickelback",
"notifications": false,
"url": "https://t.co/eZLsuVQUJE",
"created_at": "Tue Apr 07 21:11:47 +0000 2009",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Mon Jan 25 17:39:42 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 107506908,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534447491568001024/8DnF7mZP.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/683626093916585984/YvXqDIIW_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 2301,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "107506908",
"profile_background_color": "DBE9ED",
"listed_count": 3,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 18237,
"description": "gettin stonky",
"friends_count": 1521,
"location": "",
"profile_link_color": "FA91B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/683626093916585984/YvXqDIIW_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/107506908/1453857336",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534447491568001024/8DnF7mZP.jpeg",
"screen_name": "Razaback",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 2452,
"name": "danny",
"notifications": false,
"url": null,
"created_at": "Fri Jan 22 20:04:47 +0000 2010",
"contributors_enabled": false,
"time_zone": "London",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 21:28:39 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @PageSix: Never Forget \ud83d\udc94 #Kanye https://t.co/HYyW1RLz1L",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694995871902072833,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 182107650,
"indices": [
3,
11
],
"id_str": "182107650",
"screen_name": "PageSix",
"name": "Page Six"
}
],
"hashtags": [
{
"indices": [
28,
34
],
"text": "Kanye"
}
],
"urls": [],
"media": [
{
"source_user_id": 182107650,
"source_status_id_str": "692438855472037890",
"expanded_url": "http://twitter.com/PageSix/status/692438855472037890/photo/1",
"display_url": "pic.twitter.com/HYyW1RLz1L",
"url": "https://t.co/HYyW1RLz1L",
"media_url_https": "https://pbs.twimg.com/media/CZwJeCvVIAAJmGM.jpg",
"source_user_id_str": "182107650",
"source_status_id": 692438855472037890,
"id_str": "692438854444326912",
"sizes": {
"small": {
"h": 242,
"resize": "fit",
"w": 340
},
"large": {
"h": 730,
"resize": "fit",
"w": 1024
},
"medium": {
"h": 427,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
35,
58
],
"type": "photo",
"id": 692438854444326912,
"media_url": "http://pbs.twimg.com/media/CZwJeCvVIAAJmGM.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1251,
"id_str": "694995871902072833",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Never Forget \ud83d\udc94 #Kanye https://t.co/HYyW1RLz1L",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 692438855472037890,
"favorite_count": 968,
"source": "<a href=\"http://www.socialflow.com\" rel=\"nofollow\">SocialFlow</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
15,
21
],
"text": "Kanye"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/PageSix/status/692438855472037890/photo/1",
"display_url": "pic.twitter.com/HYyW1RLz1L",
"url": "https://t.co/HYyW1RLz1L",
"media_url_https": "https://pbs.twimg.com/media/CZwJeCvVIAAJmGM.jpg",
"id_str": "692438854444326912",
"sizes": {
"small": {
"h": 242,
"resize": "fit",
"w": 340
},
"large": {
"h": 730,
"resize": "fit",
"w": 1024
},
"medium": {
"h": 427,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
22,
45
],
"type": "photo",
"id": 692438854444326912,
"media_url": "http://pbs.twimg.com/media/CZwJeCvVIAAJmGM.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1251,
"id_str": "692438855472037890",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 182107650,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/315217761/p11age_six_tweet_logo.jpg",
"verified": true,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/525711180157837313/AmJO4zUb_normal.jpeg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/jc6xOkyZUE",
"indices": [
0,
23
],
"expanded_url": "http://pagesix.com/",
"display_url": "pagesix.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 134018,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "182107650",
"profile_background_color": "000000",
"listed_count": 1738,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 29268,
"description": "Meet the team! @PageSixEmily @MaggieCoughlan @jbgordon @AndrewEdward @bahood @lindseykupfer @derrickbryson @mohris @marasiegler @CarlosGreer @KristMcNamara",
"friends_count": 5647,
"location": "New York, New York",
"profile_link_color": "CC3333",
"profile_image_url": "http://pbs.twimg.com/profile_images/525711180157837313/AmJO4zUb_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/182107650/1414174298",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/315217761/p11age_six_tweet_logo.jpg",
"screen_name": "PageSix",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 627,
"name": "Page Six",
"notifications": false,
"url": "https://t.co/jc6xOkyZUE",
"created_at": "Mon Aug 23 21:13:38 +0000 2010",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Jan 27 20:07:42 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 73293809,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/281338091/269620_1823150907018_1487582029_31497165_2459457_n.jpg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/694463781712347136/AnKMHssV_normal.jpg",
"profile_sidebar_fill_color": "F6F6F6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 870,
"profile_sidebar_border_color": "EEEEEE",
"id_str": "73293809",
"profile_background_color": "ACDED6",
"listed_count": 13,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 64782,
"description": "I used to be an emotional bully but I'm trying to be a better person.",
"friends_count": 432,
"location": "Gotham City,USA",
"profile_link_color": "038543",
"profile_image_url": "http://pbs.twimg.com/profile_images/694463781712347136/AnKMHssV_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/73293809/1433038375",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/281338091/269620_1823150907018_1487582029_31497165_2459457_n.jpg",
"screen_name": "superrnoa",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 42391,
"name": "NOA",
"notifications": false,
"url": null,
"created_at": "Fri Sep 11 03:01:13 +0000 2009",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 21:28:22 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#drake #jcole #coleworld #kanyewest #kanye #yeezy https://t.co/PLRihPBSCL https://t.co/wLVbCBq4V1",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694995373174067200,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "drake"
},
{
"indices": [
7,
13
],
"text": "jcole"
},
{
"indices": [
14,
24
],
"text": "coleworld"
},
{
"indices": [
25,
35
],
"text": "kanyewest"
},
{
"indices": [
36,
42
],
"text": "kanye"
},
{
"indices": [
43,
49
],
"text": "yeezy"
}
],
"urls": [
{
"url": "https://t.co/PLRihPBSCL",
"indices": [
50,
73
],
"expanded_url": "https://www.youtube.com/watch?v=573ECsGb9So&Y15",
"display_url": "youtube.com/watch?v=573ECs\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/TheRapperGuide/status/694995373174067200/photo/1",
"display_url": "pic.twitter.com/wLVbCBq4V1",
"url": "https://t.co/wLVbCBq4V1",
"media_url_https": "https://pbs.twimg.com/media/CaUem3UUMAEh_Ko.jpg",
"id_str": "694995370531631105",
"sizes": {
"large": {
"h": 507,
"resize": "fit",
"w": 507
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 507,
"resize": "fit",
"w": 507
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
74,
97
],
"type": "photo",
"id": 694995370531631105,
"media_url": "http://pbs.twimg.com/media/CaUem3UUMAEh_Ko.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694995373174067200",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3766513995,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/649719416553213956/Z8249YcF.jpg",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/667575474319523842/Vq3rWjkB_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/PluhlNfLFB",
"indices": [
0,
23
],
"expanded_url": "http://SmartRapper.com",
"display_url": "SmartRapper.com"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/PluhlNfLFB",
"indices": [
20,
43
],
"expanded_url": "http://SmartRapper.com",
"display_url": "SmartRapper.com"
}
]
}
},
"followers_count": 10741,
"profile_sidebar_border_color": "000000",
"id_str": "3766513995",
"profile_background_color": "FA743E",
"listed_count": 46,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 3340,
"description": "Unlike other sites, https://t.co/PluhlNfLFB was created by a self made artist just like you | With 14,000,000+ YouTube views and major artist writing credits",
"friends_count": 2366,
"location": "Los Angeles, CA",
"profile_link_color": "000000",
"profile_image_url": "http://pbs.twimg.com/profile_images/667575474319523842/Vq3rWjkB_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3766513995/1444269518",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/649719416553213956/Z8249YcF.jpg",
"screen_name": "TheRapperGuide",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 5897,
"name": "SmartRapper(dot)com",
"notifications": false,
"url": "https://t.co/PluhlNfLFB",
"created_at": "Fri Sep 25 02:45:24 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 21:26:24 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "privatekanye: what a beauty https://t.co/wF5j6ZlSB9 #Kanye https://t.co/bXjX5C8CtC",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694994715133943808,
"favorite_count": 0,
"source": "<a href=\"http://placeholder.com\" rel=\"nofollow\">Jane Eyre Rock Star</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
52,
58
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/wF5j6ZlSB9",
"indices": [
28,
51
],
"expanded_url": "http://music.fastyellowcheetah.com/site/kanye-west/472952/",
"display_url": "music.fastyellowcheetah.com/site/kanye-wes\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/KanyeRules4Ever/status/694994715133943808/photo/1",
"display_url": "pic.twitter.com/bXjX5C8CtC",
"url": "https://t.co/bXjX5C8CtC",
"media_url_https": "https://pbs.twimg.com/media/CaUeAohUAAAjcSN.jpg",
"id_str": "694994713724583936",
"sizes": {
"small": {
"h": 320,
"resize": "fit",
"w": 320
},
"large": {
"h": 320,
"resize": "fit",
"w": 320
},
"medium": {
"h": 320,
"resize": "fit",
"w": 320
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
59,
82
],
"type": "photo",
"id": 694994713724583936,
"media_url": "http://pbs.twimg.com/media/CaUeAohUAAAjcSN.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694994715133943808",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 3386610897,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/624796774864060416/Wec1yI0y_normal.png",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/YBfSNotMRB",
"indices": [
0,
22
],
"expanded_url": "http://music.fastyellowcheetah.com/site/kanye-west/",
"display_url": "music.fastyellowcheetah.com/site/kanye-wes\u2026"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 128,
"profile_sidebar_border_color": "000000",
"id_str": "3386610897",
"profile_background_color": "000000",
"listed_count": 2,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 1637,
"description": "HUGE fan of one of the most talented musicians in history. Uh-huh honey!",
"friends_count": 137,
"location": "Atlanta",
"profile_link_color": "000000",
"profile_image_url": "http://pbs.twimg.com/profile_images/624796774864060416/Wec1yI0y_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3386610897/1437798065",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "KanyeRules4Ever",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 0,
"name": "Kanye Kanye Kanye",
"notifications": false,
"url": "http://t.co/YBfSNotMRB",
"created_at": "Wed Jul 22 01:46:22 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 21:23:47 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Kanye West Will Record With Taylor Swift, Says She Supported His Grammy Stage Crash\n\nhttps://t.co/3YodXXkoSa\n\n#kanye https://t.co/txcpLVOJgx",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694992581915185152,
"favorite_count": 0,
"source": "<a href=\"https://www.socialoomph.com\" rel=\"nofollow\">SocialOomph</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
110,
116
],
"text": "kanye"
}
],
"urls": [
{
"url": "https://t.co/3YodXXkoSa",
"indices": [
85,
108
],
"expanded_url": "http://bit.ly/1DoEQNd",
"display_url": "bit.ly/1DoEQNd"
}
],
"media": [
{
"expanded_url": "http://twitter.com/poproxx1/status/694992581915185152/photo/1",
"display_url": "pic.twitter.com/txcpLVOJgx",
"url": "https://t.co/txcpLVOJgx",
"media_url_https": "https://pbs.twimg.com/media/CaUcEhPWYAEyPpG.jpg",
"id_str": "694992581466415105",
"sizes": {
"small": {
"h": 226,
"resize": "fit",
"w": 340
},
"large": {
"h": 413,
"resize": "fit",
"w": 620
},
"medium": {
"h": 399,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
117,
140
],
"type": "photo",
"id": 694992581466415105,
"media_url": "http://pbs.twimg.com/media/CaUcEhPWYAEyPpG.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694992581915185152",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3192600423,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/590643781977800704/pXrzvRLc.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/590641590009470976/WcZnWIqK_normal.png",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/oSCXSXOL99",
"indices": [
0,
22
],
"expanded_url": "http://poproxx.us",
"display_url": "poproxx.us"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 619,
"profile_sidebar_border_color": "000000",
"id_str": "3192600423",
"profile_background_color": "000000",
"listed_count": 100,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 158638,
"description": "Get ur Poproxx off",
"friends_count": 595,
"location": "Tennessee, USA",
"profile_link_color": "000000",
"profile_image_url": "http://pbs.twimg.com/profile_images/590641590009470976/WcZnWIqK_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3192600423/1429657388",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/590643781977800704/pXrzvRLc.png",
"screen_name": "poproxx1",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 0,
"name": "Poproxx",
"notifications": false,
"url": "http://t.co/oSCXSXOL99",
"created_at": "Tue Apr 21 22:20:21 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 21:15:18 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @ckgthedon: #GoodMorning #TeamCKG @ckgthedon https://t.co/NDAgHRcNR5 #CKG #Reverbnation #IowaCaucus #GroundhogDay #Kobe #Beyonce #Drake \u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694991909358424064,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 21112127,
"indices": [
3,
13
],
"id_str": "21112127",
"screen_name": "ckgthedon",
"name": "CKGTHEDON"
},
{
"id": 21112127,
"indices": [
37,
47
],
"id_str": "21112127",
"screen_name": "ckgthedon",
"name": "CKGTHEDON"
}
],
"hashtags": [
{
"indices": [
15,
27
],
"text": "GoodMorning"
},
{
"indices": [
28,
36
],
"text": "TeamCKG"
},
{
"indices": [
72,
76
],
"text": "CKG"
},
{
"indices": [
77,
90
],
"text": "Reverbnation"
},
{
"indices": [
91,
102
],
"text": "IowaCaucus"
},
{
"indices": [
103,
116
],
"text": "GroundhogDay"
},
{
"indices": [
117,
122
],
"text": "Kobe"
},
{
"indices": [
123,
131
],
"text": "Beyonce"
},
{
"indices": [
132,
138
],
"text": "Drake"
},
{
"indices": [
139,
140
],
"text": "Kanye"
},
{
"indices": [
139,
140
],
"text": "Chicago"
}
],
"urls": [
{
"url": "https://t.co/NDAgHRcNR5",
"indices": [
48,
71
],
"expanded_url": "https://www.reverbnation.com/ckg",
"display_url": "reverbnation.com/ckg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694991909358424064",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "#GoodMorning #TeamCKG @ckgthedon https://t.co/NDAgHRcNR5 #CKG #Reverbnation #IowaCaucus #GroundhogDay #Kobe #Beyonce #Drake #Kanye #Chicago",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694882738420056064,
"favorite_count": 2,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 21112127,
"indices": [
22,
32
],
"id_str": "21112127",
"screen_name": "ckgthedon",
"name": "CKGTHEDON"
}
],
"hashtags": [
{
"indices": [
0,
12
],
"text": "GoodMorning"
},
{
"indices": [
13,
21
],
"text": "TeamCKG"
},
{
"indices": [
57,
61
],
"text": "CKG"
},
{
"indices": [
62,
75
],
"text": "Reverbnation"
},
{
"indices": [
76,
87
],
"text": "IowaCaucus"
},
{
"indices": [
88,
101
],
"text": "GroundhogDay"
},
{
"indices": [
102,
107
],
"text": "Kobe"
},
{
"indices": [
108,
116
],
"text": "Beyonce"
},
{
"indices": [
117,
123
],
"text": "Drake"
},
{
"indices": [
124,
130
],
"text": "Kanye"
},
{
"indices": [
131,
139
],
"text": "Chicago"
}
],
"urls": [
{
"url": "https://t.co/NDAgHRcNR5",
"indices": [
33,
56
],
"expanded_url": "https://www.reverbnation.com/ckg",
"display_url": "reverbnation.com/ckg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694882738420056064",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 21112127,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/447221144232275969/4GG8b52h.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/691797655836565508/6QrKtu_s_normal.jpg",
"profile_sidebar_fill_color": "DDFFCC",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/wZcYRhR9Hy",
"indices": [
0,
22
],
"expanded_url": "http://www.ckgonline.net/fr_ckgintro.cfm",
"display_url": "ckgonline.net/fr_ckgintro.cfm"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 11080,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "21112127",
"profile_background_color": "9AE4E8",
"listed_count": 109,
"is_translation_enabled": false,
"utc_offset": -25200,
"statuses_count": 96362,
"description": "LA Music Award Winner,#TeamGemini,NBC Chicago Fire,FOX's Empire, ABC Mind Games/SOHH.COM True Grit Winner ,Remy Martin Ringleader; Ckgthereplacement@gmail.com",
"friends_count": 3125,
"location": "West Coast/Chi-Town 4 Life Tho",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/691797655836565508/6QrKtu_s_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/21112127/1395460747",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/447221144232275969/4GG8b52h.jpeg",
"screen_name": "ckgthedon",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 2963,
"name": "CKGTHEDON",
"notifications": false,
"url": "http://t.co/wZcYRhR9Hy",
"created_at": "Tue Feb 17 18:04:49 +0000 2009",
"contributors_enabled": false,
"time_zone": "Mountain Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 13:58:49 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 245344056,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1230799357/Team_CKG_Pic_FINAL_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/ZmLmOOkW",
"indices": [
0,
20
],
"expanded_url": "http://www.ckgonline.net/fr_ckgintro.cfm",
"display_url": "ckgonline.net/fr_ckgintro.cfm"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 100,
"profile_sidebar_border_color": "C0DEED",
"id_str": "245344056",
"profile_background_color": "C0DEED",
"listed_count": 30,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 5751,
"description": "This is our page supporting our friend @ckgthedon !! hit our individual pages for us! MUAH! xoxoxox",
"friends_count": 504,
"location": "los angeles, CA",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/1230799357/Team_CKG_Pic_FINAL_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "TeamCKGGirls",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 3739,
"name": "Tanya, Stacey, Erica",
"notifications": false,
"url": "http://t.co/ZmLmOOkW",
"created_at": "Mon Jan 31 13:35:21 +0000 2011",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 21:12:38 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @ThePerezHilton: Enjoy my #AmberRose impersonation as we talk #Kanye drama on my latest podcast! Listen at https://t.co/b9XIjrZj0P https\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694990750392705025,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 3911239745,
"indices": [
3,
18
],
"id_str": "3911239745",
"screen_name": "ThePerezHilton",
"name": "Perez"
}
],
"hashtags": [
{
"indices": [
29,
39
],
"text": "AmberRose"
},
{
"indices": [
65,
71
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/b9XIjrZj0P",
"indices": [
110,
133
],
"expanded_url": "http://Play.it/Perez",
"display_url": "Play.it/Perez"
}
],
"media": [
{
"source_user_id": 3911239745,
"source_status_id_str": "694976350722117634",
"expanded_url": "http://twitter.com/ThePerezHilton/status/694976350722117634/video/1",
"display_url": "pic.twitter.com/uY8z30VLgE",
"url": "https://t.co/uY8z30VLgE",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg",
"source_user_id_str": "3911239745",
"source_status_id": 694976350722117634,
"id_str": "694975873653538817",
"sizes": {
"small": {
"h": 191,
"resize": "fit",
"w": 340
},
"large": {
"h": 576,
"resize": "fit",
"w": 1024
},
"medium": {
"h": 338,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
139,
140
],
"type": "photo",
"id": 694975873653538817,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 8,
"id_str": "694990750392705025",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Enjoy my #AmberRose impersonation as we talk #Kanye drama on my latest podcast! Listen at https://t.co/b9XIjrZj0P https://t.co/uY8z30VLgE",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694976350722117634,
"favorite_count": 33,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
9,
19
],
"text": "AmberRose"
},
{
"indices": [
45,
51
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/b9XIjrZj0P",
"indices": [
90,
113
],
"expanded_url": "http://Play.it/Perez",
"display_url": "Play.it/Perez"
}
],
"media": [
{
"expanded_url": "http://twitter.com/ThePerezHilton/status/694976350722117634/video/1",
"display_url": "pic.twitter.com/uY8z30VLgE",
"url": "https://t.co/uY8z30VLgE",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg",
"id_str": "694975873653538817",
"sizes": {
"small": {
"h": 191,
"resize": "fit",
"w": 340
},
"large": {
"h": 576,
"resize": "fit",
"w": 1024
},
"medium": {
"h": 338,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
114,
137
],
"type": "photo",
"id": 694975873653538817,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 8,
"id_str": "694976350722117634",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 3911239745,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": true,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/668948150925721601/UlmmjRS0_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/h0xBEs8dmD",
"indices": [
0,
23
],
"expanded_url": "http://www.PerezHilton.com",
"display_url": "PerezHilton.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 18912,
"profile_sidebar_border_color": "000000",
"id_str": "3911239745",
"profile_background_color": "000000",
"listed_count": 59,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 4556,
"description": "This is the personal account for Perez Hilton. He's a proud dad and founder of one of the most famous websites in the world. Follow it at @PerezHilton",
"friends_count": 670,
"location": "Manhattan, NY",
"profile_link_color": "F5ABB5",
"profile_image_url": "http://pbs.twimg.com/profile_images/668948150925721601/UlmmjRS0_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3911239745/1446500258",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "ThePerezHilton",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 14202,
"name": "Perez",
"notifications": false,
"url": "https://t.co/h0xBEs8dmD",
"created_at": "Fri Oct 09 18:29:57 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:10:48 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 388039852,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/668268753193406464/jTGgvRsK_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 616,
"profile_sidebar_border_color": "C0DEED",
"id_str": "388039852",
"profile_background_color": "C0DEED",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 5392,
"description": "I always win & I hate fake people..Teamkim Rules",
"friends_count": 349,
"location": "London, Ontario",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/668268753193406464/jTGgvRsK_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/388039852/1448163207",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "Pearl26June",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 1018,
"name": "Kim Female king /AKA",
"notifications": false,
"url": null,
"created_at": "Mon Oct 10 02:39:10 +0000 2011",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 21:08:01 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#Kanye West records a song calling .@WendyWilliams \u2018a dude in a wig that really wanna be me\u2019 https://t.co/EEkhbkTT9P (via@DailyMailCeleb)",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694990454136426496,
"favorite_count": 0,
"source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for i\u039fS</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 28109359,
"indices": [
36,
50
],
"id_str": "28109359",
"screen_name": "WendyWilliams",
"name": "Wendy Williams"
}
],
"hashtags": [
{
"indices": [
0,
6
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/EEkhbkTT9P",
"indices": [
93,
116
],
"expanded_url": "http://dailym.ai/1X3Wn8v",
"display_url": "dailym.ai/1X3Wn8v"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694990454136426496",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 454478622,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif",
"verified": false,
"profile_text_color": "3C3940",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/683114456939950080/HCHSBr3J_normal.jpg",
"profile_sidebar_fill_color": "95E8EC",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 432,
"profile_sidebar_border_color": "5ED4DC",
"id_str": "454478622",
"profile_background_color": "0099B9",
"listed_count": 100,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 41483,
"description": "Checking the headlines",
"friends_count": 384,
"location": "On Your Timeline",
"profile_link_color": "0099B9",
"profile_image_url": "http://pbs.twimg.com/profile_images/683114456939950080/HCHSBr3J_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/454478622/1451702152",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif",
"screen_name": "Newzjunkie_",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 323,
"name": "Read",
"notifications": false,
"url": null,
"created_at": "Wed Jan 04 01:37:38 +0000 2012",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 21:06:51 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Episode 104: Phantom Apostrophes #kanye #whizkhalifa #darkseid #BvS #youtube #ghosts #aliens https://t.co/XIBvsQcfpO",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694990415615909894,
"favorite_count": 0,
"source": "<a href=\"http://libsyn.com/3/\" rel=\"nofollow\">Libsyn On-Publish</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
33,
39
],
"text": "kanye"
},
{
"indices": [
40,
52
],
"text": "whizkhalifa"
},
{
"indices": [
53,
62
],
"text": "darkseid"
},
{
"indices": [
63,
67
],
"text": "BvS"
},
{
"indices": [
68,
76
],
"text": "youtube"
},
{
"indices": [
77,
84
],
"text": "ghosts"
},
{
"indices": [
85,
92
],
"text": "aliens"
}
],
"urls": [
{
"url": "https://t.co/XIBvsQcfpO",
"indices": [
93,
116
],
"expanded_url": "http://esspod.libsyn.com/episode-104-phantom-apostrophes",
"display_url": "esspod.libsyn.com/episode-104-ph\u2026"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694990415615909894",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2219801364,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/434164437801762816/rFeuegVF_normal.jpeg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/bQkffnC5WK",
"indices": [
0,
22
],
"expanded_url": "http://esspod.com",
"display_url": "esspod.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 4174,
"profile_sidebar_border_color": "EEEEEE",
"id_str": "2219801364",
"profile_background_color": "131516",
"listed_count": 18,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 337,
"description": "A weekly dose of four beautiful male New Yorkers gossiping about their sex-lives (or lack thereof) and finding new ways to deal with being a man in the 90's...",
"friends_count": 1646,
"location": "ESS Pod on Itunes and Stitcher",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/434164437801762816/rFeuegVF_normal.jpeg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2219801364/1427117748",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif",
"screen_name": "ESSpodcast",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 203,
"name": "Eat Shit Sleep Pod",
"notifications": false,
"url": "http://t.co/bQkffnC5WK",
"created_at": "Thu Nov 28 14:15:43 +0000 2013",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "hi",
"created_at": "Wed Feb 03 21:06:42 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "hi",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "@kanyewest https://t.co/HtG310CdSa #kanye",
"is_quote_status": false,
"in_reply_to_status_id": 694721638714052608,
"id": 694988856446345216,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 169686021,
"indices": [
0,
10
],
"id_str": "169686021",
"screen_name": "kanyewest",
"name": "KANYE WEST"
}
],
"hashtags": [
{
"indices": [
35,
41
],
"text": "kanye"
}
],
"urls": [
{
"url": "https://t.co/HtG310CdSa",
"indices": [
11,
34
],
"expanded_url": "https://vine.co/v/ii3UEUwJ2lw",
"display_url": "vine.co/v/ii3UEUwJ2lw"
}
]
},
"in_reply_to_screen_name": "kanyewest",
"in_reply_to_user_id": 169686021,
"retweet_count": 0,
"id_str": "694988856446345216",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3326789838,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/692042371748532224/FsWP4r6E_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/tIWDGXykBk",
"indices": [
0,
23
],
"expanded_url": "https://soundcloud.com/bobby-balboa/er-bobby-balboa",
"display_url": "soundcloud.com/bobby-balboa/e\u2026"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/VLUVNSH231",
"indices": [
97,
120
],
"expanded_url": "https://vine.co/v/ii3UEUwJ2lw",
"display_url": "vine.co/v/ii3UEUwJ2lw"
}
]
}
},
"followers_count": 25,
"profile_sidebar_border_color": "C0DEED",
"id_str": "3326789838",
"profile_background_color": "C0DEED",
"listed_count": 3,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 309,
"description": "SHARING SOUNDS NEW MUSIC. FROM ARTIST BOBBY BALBOA. COMEDY COSMOS OF TONGA YOGA #VINE @WORLDSTAR https://t.co/VLUVNSH231 #kanyewestgetsfingered #vine",
"friends_count": 83,
"location": "Houston, TX",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/692042371748532224/FsWP4r6E_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "PromotionBalboa",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 186,
"name": "Balboa jankins",
"notifications": false,
"url": "https://t.co/tIWDGXykBk",
"created_at": "Sun Aug 23 16:47:53 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": "169686021",
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 21:00:30 +0000 2016",
"in_reply_to_status_id_str": "694721638714052608",
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "The \"wavy daddy\" squashes the beef #kanye #wiz https://t.co/U9zTveuHa2",
"is_quote_status": true,
"in_reply_to_status_id": null,
"id": 694988257382289413,
"favorite_count": 0,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
37,
43
],
"text": "kanye"
},
{
"indices": [
44,
48
],
"text": "wiz"
}
],
"urls": [
{
"url": "https://t.co/U9zTveuHa2",
"indices": [
49,
72
],
"expanded_url": "https://twitter.com/complexmag/status/694915888991096832",
"display_url": "twitter.com/complexmag/sta\u2026"
}
]
},
"quoted_status_id": 694915888991096832,
"retweeted": false,
"coordinates": null,
"quoted_status": {
"contributors": null,
"truncated": false,
"text": "ATTN Rap Twitter: Max B speaks on Kanye West naming his album 'WAVES': https://t.co/sYDuJYYnuK https://t.co/anfVBUgAWI",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694915888991096832,
"favorite_count": 388,
"source": "<a href=\"http://www.socialflow.com\" rel=\"nofollow\">SocialFlow</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [],
"urls": [
{
"url": "https://t.co/sYDuJYYnuK",
"indices": [
71,
94
],
"expanded_url": "http://trib.al/9EZEjKz",
"display_url": "trib.al/9EZEjKz"
},
{
"url": "https://t.co/anfVBUgAWI",
"indices": [
95,
118
],
"expanded_url": "http://twitter.com/ComplexMag/status/694915888991096832/photo/1",
"display_url": "pic.twitter.com/anfVBUgAWI"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 326,
"id_str": "694915888991096832",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 13049362,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/443404890799210496/chsw2pxv.jpeg",
"verified": true,
"profile_text_color": "787878",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/615645115684511745/J_kELH0x_normal.jpg",
"profile_sidebar_fill_color": "F2F2F2",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/jPEji9tZYr",
"indices": [
0,
23
],
"expanded_url": "http://www.complex.com",
"display_url": "complex.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 856529,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "13049362",
"profile_background_color": "000000",
"listed_count": 6680,
"is_translation_enabled": true,
"utc_offset": -18000,
"statuses_count": 238530,
"description": "Making Culture Pop. Snapchat: ComplexMag",
"friends_count": 36496,
"location": "New York",
"profile_link_color": "FF0000",
"profile_image_url": "http://pbs.twimg.com/profile_images/615645115684511745/J_kELH0x_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/13049362/1454425827",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/443404890799210496/chsw2pxv.jpeg",
"screen_name": "ComplexMag",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 7387,
"name": "Complex",
"notifications": false,
"url": "https://t.co/jPEji9tZYr",
"created_at": "Mon Feb 04 14:34:39 +0000 2008",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 16:10:33 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694988257382289413",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 462540897,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/408332588/beauty.jpg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/694550536335552513/76uiYCBJ_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": [
{
"url": "https://t.co/nlmXV7b6Ku",
"indices": [
73,
96
],
"expanded_url": "http://lnkd.in/drHNHu5",
"display_url": "lnkd.in/drHNHu5"
}
]
}
},
"followers_count": 93,
"profile_sidebar_border_color": "C0DEED",
"id_str": "462540897",
"profile_background_color": "C0DEED",
"listed_count": 12,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 1139,
"description": "Learning, Listening, Moving and Shaking. A Millennial Outlier. LinkedIn: https://t.co/nlmXV7b6Ku Instagram: @kayapino",
"friends_count": 189,
"location": "Toronto, ON",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/694550536335552513/76uiYCBJ_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/462540897/1454428726",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/408332588/beauty.jpg",
"screen_name": "KayaPino",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 213,
"name": "Kaya Pino",
"notifications": false,
"url": null,
"created_at": "Fri Jan 13 02:10:41 +0000 2012",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:58:07 +0000 2016",
"quoted_status_id_str": "694915888991096832",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "I wish people would lay off of #Kanye and the fingering rumors. As long as it's no more than two fingers at a time then it's no big deal.",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694988044617826304,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
31,
37
],
"text": "Kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694988044617826304",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 4718130634,
"profile_background_image_url_https": null,
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/684474321859907584/q1pRoVZA_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 20,
"profile_sidebar_border_color": "C0DEED",
"id_str": "4718130634",
"profile_background_color": "F5F8FA",
"listed_count": 1,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 58,
"description": "",
"friends_count": 15,
"location": "",
"profile_link_color": "2B7BB9",
"profile_image_url": "http://pbs.twimg.com/profile_images/684474321859907584/q1pRoVZA_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": null,
"screen_name": "RealKenKratz",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 0,
"name": "Ken Kratz",
"notifications": false,
"url": null,
"created_at": "Tue Jan 05 20:34:51 +0000 2016",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 20:57:16 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "more of whats wrong with the system.. #kanye #KanyeWest #kanyewestforpresident https://t.co/N01lqX41Ug",
"is_quote_status": true,
"in_reply_to_status_id": null,
"id": 694987871824928768,
"favorite_count": 0,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
38,
44
],
"text": "kanye"
},
{
"indices": [
45,
55
],
"text": "KanyeWest"
},
{
"indices": [
56,
78
],
"text": "kanyewestforpresident"
}
],
"urls": [
{
"url": "https://t.co/N01lqX41Ug",
"indices": [
80,
103
],
"expanded_url": "https://twitter.com/Suntimes/status/694987659429683201",
"display_url": "twitter.com/Suntimes/statu\u2026"
}
]
},
"quoted_status_id": 694987659429683201,
"retweeted": false,
"coordinates": null,
"quoted_status": {
"contributors": null,
"truncated": false,
"text": "Rauner says he's not trying to sabotage CPS bond issues by slamming the district's finances https://t.co/C5EPDnxx1R https://t.co/jmNimeIihe",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694987659429683201,
"favorite_count": 0,
"source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [],
"urls": [
{
"url": "https://t.co/C5EPDnxx1R",
"indices": [
92,
115
],
"expanded_url": "http://bit.ly/1PAIZHo",
"display_url": "bit.ly/1PAIZHo"
}
],
"media": [
{
"expanded_url": "http://twitter.com/Suntimes/status/694987659429683201/photo/1",
"display_url": "pic.twitter.com/jmNimeIihe",
"url": "https://t.co/jmNimeIihe",
"media_url_https": "https://pbs.twimg.com/media/CaUXf9FXEAA_gyi.jpg",
"id_str": "694987555239038976",
"sizes": {
"large": {
"h": 250,
"resize": "fit",
"w": 340
},
"small": {
"h": 250,
"resize": "fit",
"w": 340
},
"medium": {
"h": 250,
"resize": "fit",
"w": 340
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
116,
139
],
"type": "photo",
"id": 694987555239038976,
"media_url": "http://pbs.twimg.com/media/CaUXf9FXEAA_gyi.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694987659429683201",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 12811952,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000119561429/8f57893c5f014bffec1871f0b76eb7d2.jpeg",
"verified": true,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/575531934157119488/9TaaXkIc_normal.jpeg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/XmojOL5kOD",
"indices": [
0,
22
],
"expanded_url": "http://chicago.suntimes.com",
"display_url": "chicago.suntimes.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 235941,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "12811952",
"profile_background_color": "FFFFFF",
"listed_count": 5446,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 89290,
"description": "Grab a copy of your new Chicago Sun-Times! More Chicago. More national. More of what matters to you. Tell us what you think: CSTfeedback@suntimes.com",
"friends_count": 15328,
"location": "Chicago",
"profile_link_color": "3B94D9",
"profile_image_url": "http://pbs.twimg.com/profile_images/575531934157119488/9TaaXkIc_normal.jpeg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/12811952/1441736339",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000119561429/8f57893c5f014bffec1871f0b76eb7d2.jpeg",
"screen_name": "Suntimes",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 4497,
"name": "Chicago Sun-Times",
"notifications": false,
"url": "http://t.co/XmojOL5kOD",
"created_at": "Tue Jan 29 02:38:26 +0000 2008",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:55:44 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694987871824928768",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 4845433224,
"profile_background_image_url_https": null,
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/694211118357618688/4czciwHT_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/cCWk89pgfO",
"indices": [
0,
23
],
"expanded_url": "http://www.mrwest4president.org/",
"display_url": "mrwest4president.org"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 42,
"profile_sidebar_border_color": "C0DEED",
"id_str": "4845433224",
"profile_background_color": "F5F8FA",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 84,
"description": "They Dont Want Us To Win!",
"friends_count": 225,
"location": "Chicago, IL",
"profile_link_color": "2B7BB9",
"profile_image_url": "http://pbs.twimg.com/profile_images/694211118357618688/4czciwHT_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/4845433224/1454351364",
"profile_background_image_url": null,
"screen_name": "MrWest4Prez2020",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 31,
"name": "KanyeWest4President",
"notifications": false,
"url": "https://t.co/cCWk89pgfO",
"created_at": "Mon Feb 01 17:26:15 +0000 2016",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:56:35 +0000 2016",
"quoted_status_id_str": "694987659429683201",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @UKGrime: Some of yall love #kanye so much you won't retweet this \ud83d\ude02 @Urbanimated https://t.co/1Fjj5q2GJU",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694987754019622920,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 383665643,
"indices": [
3,
11
],
"id_str": "383665643",
"screen_name": "UKGrime",
"name": "UKGrime"
},
{
"id": 150041565,
"indices": [
71,
83
],
"id_str": "150041565",
"screen_name": "Urbanimated",
"name": "J. King"
}
],
"hashtags": [
{
"indices": [
31,
37
],
"text": "kanye"
}
],
"urls": [],
"media": [
{
"source_user_id": 383665643,
"source_status_id_str": "692488670545338368",
"expanded_url": "http://twitter.com/UKGrime/status/692488670545338368/photo/1",
"display_url": "pic.twitter.com/1Fjj5q2GJU",
"url": "https://t.co/1Fjj5q2GJU",
"media_url_https": "https://pbs.twimg.com/media/CZw2w33WEAAWsL3.jpg",
"source_user_id_str": "383665643",
"source_status_id": 692488670545338368,
"id_str": "692488655965917184",
"sizes": {
"large": {
"h": 1000,
"resize": "fit",
"w": 1000
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 600,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
84,
107
],
"type": "photo",
"id": 692488655965917184,
"media_url": "http://pbs.twimg.com/media/CZw2w33WEAAWsL3.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 874,
"id_str": "694987754019622920",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Some of yall love #kanye so much you won't retweet this \ud83d\ude02 @Urbanimated https://t.co/1Fjj5q2GJU",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 692488670545338368,
"favorite_count": 450,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 150041565,
"indices": [
58,
70
],
"id_str": "150041565",
"screen_name": "Urbanimated",
"name": "J. King"
}
],
"hashtags": [
{
"indices": [
18,
24
],
"text": "kanye"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/UKGrime/status/692488670545338368/photo/1",
"display_url": "pic.twitter.com/1Fjj5q2GJU",
"url": "https://t.co/1Fjj5q2GJU",
"media_url_https": "https://pbs.twimg.com/media/CZw2w33WEAAWsL3.jpg",
"id_str": "692488655965917184",
"sizes": {
"large": {
"h": 1000,
"resize": "fit",
"w": 1000
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 600,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
71,
94
],
"type": "photo",
"id": 692488655965917184,
"media_url": "http://pbs.twimg.com/media/CZw2w33WEAAWsL3.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 874,
"id_str": "692488670545338368",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 383665643,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/570424007292231680/-EWI3ykO.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/693400005516890112/1ZyBURtr_normal.jpg",
"profile_sidebar_fill_color": "DDFFCC",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/MkdiWXF7dG",
"indices": [
0,
23
],
"expanded_url": "http://UKGrime.com",
"display_url": "UKGrime.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 24228,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "383665643",
"profile_background_color": "000000",
"listed_count": 64,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 17498,
"description": "The new platform for UK Grime Music - Creators of the #UKGrimeCypher All enquiries - Contact@UKGrime.com Australian Twitter @UKGrimeOz",
"friends_count": 3031,
"location": "United Kingdom",
"profile_link_color": "ABB8C2",
"profile_image_url": "http://pbs.twimg.com/profile_images/693400005516890112/1ZyBURtr_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/383665643/1454118374",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/570424007292231680/-EWI3ykO.jpeg",
"screen_name": "UKGrime",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 33131,
"name": "UKGrime",
"notifications": false,
"url": "https://t.co/MkdiWXF7dG",
"created_at": "Sun Oct 02 08:50:34 +0000 2011",
"contributors_enabled": false,
"time_zone": "London",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Jan 27 23:25:39 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 69285725,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/726436738/4d7352b6c95908b3192ad1543179444b.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/690196713798287360/lPeyyzSI_normal.jpg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/Wzx4tNxeTW",
"indices": [
0,
23
],
"expanded_url": "http://www.youtube.com/watch?v=qvMgLfaQRmk&feature=youtu.be",
"display_url": "youtube.com/watch?v=qvMgLf\u2026"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 1735,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "69285725",
"profile_background_color": "131516",
"listed_count": 31,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 87901,
"description": "|FARIKO GAMING| Interning at Nigeria LNG Limited x University of Hull Undergraduate x Aspired Pro Gamer x Mortal Kombat Guru x White Lotus x Shaolin Brotherhood",
"friends_count": 1699,
"location": "Abuja\u2716\ufe0fN.Yorkshire\u2716East London",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/690196713798287360/lPeyyzSI_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/69285725/1453037531",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/726436738/4d7352b6c95908b3192ad1543179444b.jpeg",
"screen_name": "FlygerianStunna",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 15295,
"name": "KUNG BRYANB",
"notifications": false,
"url": "https://t.co/Wzx4tNxeTW",
"created_at": "Thu Aug 27 13:11:03 +0000 2009",
"contributors_enabled": false,
"time_zone": "London",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:56:07 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "https://t.co/toFiMz0ygu\n\nEnjoy my #AmberRose impersonation as we talk #Kanye drama on my latest podcast! Listen at\u2026 https://t.co/OZKoZfYyq6",
"is_quote_status": true,
"in_reply_to_status_id": null,
"id": 694986835169263616,
"favorite_count": 1,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
34,
44
],
"text": "AmberRose"
},
{
"indices": [
70,
76
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/toFiMz0ygu",
"indices": [
0,
23
],
"expanded_url": "http://twitter.com/PerezHilton/status/694981857306279936",
"display_url": "twitter.com/PerezHilton/st\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/Stankin_Rankin/status/694986835169263616/photo/1",
"display_url": "pic.twitter.com/OZKoZfYyq6",
"url": "https://t.co/OZKoZfYyq6",
"media_url_https": "https://pbs.twimg.com/media/CaUW2AiXEAEGR7O.jpg",
"id_str": "694986834611474433",
"sizes": {
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"large": {
"h": 1024,
"resize": "fit",
"w": 1024
},
"medium": {
"h": 600,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
116,
139
],
"type": "photo",
"id": 694986834611474433,
"media_url": "http://pbs.twimg.com/media/CaUW2AiXEAEGR7O.jpg"
}
]
},
"quoted_status_id": 694976350722117634,
"retweeted": false,
"coordinates": null,
"quoted_status": {
"contributors": null,
"truncated": false,
"text": "Enjoy my #AmberRose impersonation as we talk #Kanye drama on my latest podcast! Listen at https://t.co/b9XIjrZj0P https://t.co/uY8z30VLgE",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694976350722117634,
"favorite_count": 33,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
9,
19
],
"text": "AmberRose"
},
{
"indices": [
45,
51
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/b9XIjrZj0P",
"indices": [
90,
113
],
"expanded_url": "http://Play.it/Perez",
"display_url": "Play.it/Perez"
}
],
"media": [
{
"expanded_url": "http://twitter.com/ThePerezHilton/status/694976350722117634/video/1",
"display_url": "pic.twitter.com/uY8z30VLgE",
"url": "https://t.co/uY8z30VLgE",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg",
"id_str": "694975873653538817",
"sizes": {
"small": {
"h": 191,
"resize": "fit",
"w": 340
},
"large": {
"h": 576,
"resize": "fit",
"w": 1024
},
"medium": {
"h": 338,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
114,
137
],
"type": "photo",
"id": 694975873653538817,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 8,
"id_str": "694976350722117634",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 3911239745,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": true,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/668948150925721601/UlmmjRS0_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/h0xBEs8dmD",
"indices": [
0,
23
],
"expanded_url": "http://www.PerezHilton.com",
"display_url": "PerezHilton.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 18912,
"profile_sidebar_border_color": "000000",
"id_str": "3911239745",
"profile_background_color": "000000",
"listed_count": 59,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 4556,
"description": "This is the personal account for Perez Hilton. He's a proud dad and founder of one of the most famous websites in the world. Follow it at @PerezHilton",
"friends_count": 670,
"location": "Manhattan, NY",
"profile_link_color": "F5ABB5",
"profile_image_url": "http://pbs.twimg.com/profile_images/668948150925721601/UlmmjRS0_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3911239745/1446500258",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "ThePerezHilton",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 14202,
"name": "Perez",
"notifications": false,
"url": "https://t.co/h0xBEs8dmD",
"created_at": "Fri Oct 09 18:29:57 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:10:48 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"source": "<a href=\"http://ifttt.com\" rel=\"nofollow\">IFTTT</a>",
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694986835169263616",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 3330352853,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/616708886502879236/Q7ssMzDn_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 414,
"profile_sidebar_border_color": "000000",
"id_str": "3330352853",
"profile_background_color": "000000",
"listed_count": 127,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 80535,
"description": "THE #1 PLACE FOR THE MOST UP-TO-DATE CELEBRITY & ENTERTAINMENT NEWS.",
"friends_count": 1098,
"location": "",
"profile_link_color": "9266CC",
"profile_image_url": "http://pbs.twimg.com/profile_images/616708886502879236/Q7ssMzDn_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "Stankin_Rankin",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 0,
"name": "Stankin Rankin",
"notifications": false,
"url": null,
"created_at": "Tue Jun 16 22:58:39 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:52:28 +0000 2016",
"quoted_status_id_str": "694976350722117634",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#Kanye-age #K-Smash https://t.co/UXUtIJLZZi",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694986251082948609,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "Kanye"
},
{
"indices": [
11,
13
],
"text": "K"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/K_Smash16/status/694986251082948609/photo/1",
"display_url": "pic.twitter.com/UXUtIJLZZi",
"url": "https://t.co/UXUtIJLZZi",
"media_url_https": "https://pbs.twimg.com/media/CaUWTZiVIAElT-V.jpg",
"id_str": "694986240026812417",
"sizes": {
"small": {
"h": 255,
"resize": "fit",
"w": 340
},
"large": {
"h": 768,
"resize": "fit",
"w": 1024
},
"medium": {
"h": 450,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
20,
43
],
"type": "photo",
"id": 694986240026812417,
"media_url": "http://pbs.twimg.com/media/CaUWTZiVIAElT-V.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694986251082948609",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 4855716319,
"profile_background_image_url_https": null,
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/694980783283437568/1TTMiQUF_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 5,
"profile_sidebar_border_color": "C0DEED",
"id_str": "4855716319",
"profile_background_color": "F5F8FA",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 12,
"description": "",
"friends_count": 30,
"location": "",
"profile_link_color": "2B7BB9",
"profile_image_url": "http://pbs.twimg.com/profile_images/694980783283437568/1TTMiQUF_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": null,
"screen_name": "K_Smash16",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 0,
"name": "Kup Smashian",
"notifications": false,
"url": null,
"created_at": "Wed Feb 03 20:24:15 +0000 2016",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:50:09 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @ThePerezHilton: Enjoy my #AmberRose impersonation as we talk #Kanye drama on my latest podcast! Listen at https://t.co/b9XIjrZj0P https\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694984657994178561,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 3911239745,
"indices": [
3,
18
],
"id_str": "3911239745",
"screen_name": "ThePerezHilton",
"name": "Perez"
}
],
"hashtags": [
{
"indices": [
29,
39
],
"text": "AmberRose"
},
{
"indices": [
65,
71
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/b9XIjrZj0P",
"indices": [
110,
133
],
"expanded_url": "http://Play.it/Perez",
"display_url": "Play.it/Perez"
}
],
"media": [
{
"source_user_id": 3911239745,
"source_status_id_str": "694976350722117634",
"expanded_url": "http://twitter.com/ThePerezHilton/status/694976350722117634/video/1",
"display_url": "pic.twitter.com/uY8z30VLgE",
"url": "https://t.co/uY8z30VLgE",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg",
"source_user_id_str": "3911239745",
"source_status_id": 694976350722117634,
"id_str": "694975873653538817",
"sizes": {
"small": {
"h": 191,
"resize": "fit",
"w": 340
},
"large": {
"h": 576,
"resize": "fit",
"w": 1024
},
"medium": {
"h": 338,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
139,
140
],
"type": "photo",
"id": 694975873653538817,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 8,
"id_str": "694984657994178561",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Enjoy my #AmberRose impersonation as we talk #Kanye drama on my latest podcast! Listen at https://t.co/b9XIjrZj0P https://t.co/uY8z30VLgE",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694976350722117634,
"favorite_count": 33,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
9,
19
],
"text": "AmberRose"
},
{
"indices": [
45,
51
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/b9XIjrZj0P",
"indices": [
90,
113
],
"expanded_url": "http://Play.it/Perez",
"display_url": "Play.it/Perez"
}
],
"media": [
{
"expanded_url": "http://twitter.com/ThePerezHilton/status/694976350722117634/video/1",
"display_url": "pic.twitter.com/uY8z30VLgE",
"url": "https://t.co/uY8z30VLgE",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg",
"id_str": "694975873653538817",
"sizes": {
"small": {
"h": 191,
"resize": "fit",
"w": 340
},
"large": {
"h": 576,
"resize": "fit",
"w": 1024
},
"medium": {
"h": 338,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
114,
137
],
"type": "photo",
"id": 694975873653538817,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 8,
"id_str": "694976350722117634",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 3911239745,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": true,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/668948150925721601/UlmmjRS0_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/h0xBEs8dmD",
"indices": [
0,
23
],
"expanded_url": "http://www.PerezHilton.com",
"display_url": "PerezHilton.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 18912,
"profile_sidebar_border_color": "000000",
"id_str": "3911239745",
"profile_background_color": "000000",
"listed_count": 59,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 4556,
"description": "This is the personal account for Perez Hilton. He's a proud dad and founder of one of the most famous websites in the world. Follow it at @PerezHilton",
"friends_count": 670,
"location": "Manhattan, NY",
"profile_link_color": "F5ABB5",
"profile_image_url": "http://pbs.twimg.com/profile_images/668948150925721601/UlmmjRS0_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3911239745/1446500258",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "ThePerezHilton",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 14202,
"name": "Perez",
"notifications": false,
"url": "https://t.co/h0xBEs8dmD",
"created_at": "Fri Oct 09 18:29:57 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:10:48 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 538036220,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/750594743/7e45af71d8d8db724712a142f31c40f2.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/676637928601346048/z_77Lcpo_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 667,
"profile_sidebar_border_color": "000000",
"id_str": "538036220",
"profile_background_color": "131516",
"listed_count": 45,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 46208,
"description": "African-American\n\nIN GOD WE TRUST",
"friends_count": 1193,
"location": "America ",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/676637928601346048/z_77Lcpo_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/538036220/1375566695",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/750594743/7e45af71d8d8db724712a142f31c40f2.jpeg",
"screen_name": "NateDubbleU",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 17124,
"name": "Vote\u2757#Election2016",
"notifications": false,
"url": null,
"created_at": "Tue Mar 27 10:08:36 +0000 2012",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": true,
"lang": "en",
"created_at": "Wed Feb 03 20:43:49 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @UpscaleHype: What Can We Expect From #Kanye\u2019s #YeezySeason3? Let's Speculate: https://t.co/Mr83dLteQD https://t.co/5QpeMaTDxh",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694983249207148544,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 30055564,
"indices": [
3,
15
],
"id_str": "30055564",
"screen_name": "UpscaleHype",
"name": "UpscaleHype"
}
],
"hashtags": [
{
"indices": [
41,
47
],
"text": "Kanye"
},
{
"indices": [
50,
63
],
"text": "YeezySeason3"
}
],
"urls": [
{
"url": "https://t.co/Mr83dLteQD",
"indices": [
83,
106
],
"expanded_url": "http://www.upscalehype.com/2016/02/what-can-we-expect-from-kanyes-yeezy-season-3/",
"display_url": "upscalehype.com/2016/02/what-c\u2026"
}
],
"media": [
{
"source_user_id": 30055564,
"source_status_id_str": "694763652193226753",
"expanded_url": "http://twitter.com/UpscaleHype/status/694763652193226753/photo/1",
"display_url": "pic.twitter.com/5QpeMaTDxh",
"url": "https://t.co/5QpeMaTDxh",
"media_url_https": "https://pbs.twimg.com/media/CaRL3CTUUAAMjBj.jpg",
"source_user_id_str": "30055564",
"source_status_id": 694763652193226753,
"id_str": "694763651404681216",
"sizes": {
"large": {
"h": 1250,
"resize": "fit",
"w": 1024
},
"small": {
"h": 415,
"resize": "fit",
"w": 340
},
"medium": {
"h": 732,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
107,
130
],
"type": "photo",
"id": 694763651404681216,
"media_url": "http://pbs.twimg.com/media/CaRL3CTUUAAMjBj.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694983249207148544",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "What Can We Expect From #Kanye\u2019s #YeezySeason3? Let's Speculate: https://t.co/Mr83dLteQD https://t.co/5QpeMaTDxh",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694763652193226753,
"favorite_count": 5,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
24,
30
],
"text": "Kanye"
},
{
"indices": [
33,
46
],
"text": "YeezySeason3"
}
],
"urls": [
{
"url": "https://t.co/Mr83dLteQD",
"indices": [
66,
89
],
"expanded_url": "http://www.upscalehype.com/2016/02/what-can-we-expect-from-kanyes-yeezy-season-3/",
"display_url": "upscalehype.com/2016/02/what-c\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/UpscaleHype/status/694763652193226753/photo/1",
"display_url": "pic.twitter.com/5QpeMaTDxh",
"url": "https://t.co/5QpeMaTDxh",
"media_url_https": "https://pbs.twimg.com/media/CaRL3CTUUAAMjBj.jpg",
"id_str": "694763651404681216",
"sizes": {
"large": {
"h": 1250,
"resize": "fit",
"w": 1024
},
"small": {
"h": 415,
"resize": "fit",
"w": 340
},
"medium": {
"h": 732,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
90,
113
],
"type": "photo",
"id": 694763651404681216,
"media_url": "http://pbs.twimg.com/media/CaRL3CTUUAAMjBj.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694763652193226753",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 30055564,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/35482601/Uh_background.jpg",
"verified": false,
"profile_text_color": "666666",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/2498802680/ewq8g7rpczwjkwi0nblc_normal.jpeg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/LAb1nSovmI",
"indices": [
0,
22
],
"expanded_url": "http://upscalehype.com",
"display_url": "upscalehype.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 9786,
"profile_sidebar_border_color": "000000",
"id_str": "30055564",
"profile_background_color": "1A1B1F",
"listed_count": 202,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 14284,
"description": "Celebrity fashion and high-end lifestyle news.",
"friends_count": 251,
"location": "USA",
"profile_link_color": "2FC2EF",
"profile_image_url": "http://pbs.twimg.com/profile_images/2498802680/ewq8g7rpczwjkwi0nblc_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/30055564/1356018839",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/35482601/Uh_background.jpg",
"screen_name": "UpscaleHype",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 36,
"name": "UpscaleHype",
"notifications": false,
"url": "http://t.co/LAb1nSovmI",
"created_at": "Thu Apr 09 20:05:48 +0000 2009",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 06:05:37 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 416452353,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/692455090804797440/I4uD0IpM_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 701,
"profile_sidebar_border_color": "000000",
"id_str": "416452353",
"profile_background_color": "000000",
"listed_count": 6,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 14567,
"description": "eic: @48mag + features columnist: @upscalehype",
"friends_count": 251,
"location": "",
"profile_link_color": "94D487",
"profile_image_url": "http://pbs.twimg.com/profile_images/692455090804797440/I4uD0IpM_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/416452353/1453929005",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "Chooskie",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 17077,
"name": "Evan Malachosky",
"notifications": false,
"url": null,
"created_at": "Sat Nov 19 18:16:04 +0000 2011",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:38:13 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @ThePerezHilton: Enjoy my #AmberRose impersonation as we talk #Kanye drama on my latest podcast! Listen at https://t.co/b9XIjrZj0P https\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694982989554585600,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 3911239745,
"indices": [
3,
18
],
"id_str": "3911239745",
"screen_name": "ThePerezHilton",
"name": "Perez"
}
],
"hashtags": [
{
"indices": [
29,
39
],
"text": "AmberRose"
},
{
"indices": [
65,
71
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/b9XIjrZj0P",
"indices": [
110,
133
],
"expanded_url": "http://Play.it/Perez",
"display_url": "Play.it/Perez"
}
],
"media": [
{
"source_user_id": 3911239745,
"source_status_id_str": "694976350722117634",
"expanded_url": "http://twitter.com/ThePerezHilton/status/694976350722117634/video/1",
"display_url": "pic.twitter.com/uY8z30VLgE",
"url": "https://t.co/uY8z30VLgE",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg",
"source_user_id_str": "3911239745",
"source_status_id": 694976350722117634,
"id_str": "694975873653538817",
"sizes": {
"small": {
"h": 191,
"resize": "fit",
"w": 340
},
"large": {
"h": 576,
"resize": "fit",
"w": 1024
},
"medium": {
"h": 338,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
139,
140
],
"type": "photo",
"id": 694975873653538817,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 8,
"id_str": "694982989554585600",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Enjoy my #AmberRose impersonation as we talk #Kanye drama on my latest podcast! Listen at https://t.co/b9XIjrZj0P https://t.co/uY8z30VLgE",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694976350722117634,
"favorite_count": 33,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
9,
19
],
"text": "AmberRose"
},
{
"indices": [
45,
51
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/b9XIjrZj0P",
"indices": [
90,
113
],
"expanded_url": "http://Play.it/Perez",
"display_url": "Play.it/Perez"
}
],
"media": [
{
"expanded_url": "http://twitter.com/ThePerezHilton/status/694976350722117634/video/1",
"display_url": "pic.twitter.com/uY8z30VLgE",
"url": "https://t.co/uY8z30VLgE",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg",
"id_str": "694975873653538817",
"sizes": {
"small": {
"h": 191,
"resize": "fit",
"w": 340
},
"large": {
"h": 576,
"resize": "fit",
"w": 1024
},
"medium": {
"h": 338,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
114,
137
],
"type": "photo",
"id": 694975873653538817,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 8,
"id_str": "694976350722117634",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 3911239745,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": true,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/668948150925721601/UlmmjRS0_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/h0xBEs8dmD",
"indices": [
0,
23
],
"expanded_url": "http://www.PerezHilton.com",
"display_url": "PerezHilton.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 18912,
"profile_sidebar_border_color": "000000",
"id_str": "3911239745",
"profile_background_color": "000000",
"listed_count": 59,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 4556,
"description": "This is the personal account for Perez Hilton. He's a proud dad and founder of one of the most famous websites in the world. Follow it at @PerezHilton",
"friends_count": 670,
"location": "Manhattan, NY",
"profile_link_color": "F5ABB5",
"profile_image_url": "http://pbs.twimg.com/profile_images/668948150925721601/UlmmjRS0_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3911239745/1446500258",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "ThePerezHilton",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 14202,
"name": "Perez",
"notifications": false,
"url": "https://t.co/h0xBEs8dmD",
"created_at": "Fri Oct 09 18:29:57 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:10:48 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 377412839,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/347851802/print",
"verified": false,
"profile_text_color": "362720",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/579388262474731520/mAJGzEK8_normal.jpg",
"profile_sidebar_fill_color": "E5507E",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 1441,
"profile_sidebar_border_color": "CC3366",
"id_str": "377412839",
"profile_background_color": "FF6699",
"listed_count": 12,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 62032,
"description": "25|Mommy|\u264a|All the Right weaponary Sunshine State",
"friends_count": 897,
"location": "",
"profile_link_color": "B40B43",
"profile_image_url": "http://pbs.twimg.com/profile_images/579388262474731520/mAJGzEK8_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/377412839/1443712207",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/347851802/print",
"screen_name": "BudapecanShellz",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 31816,
"name": "Little Debbie",
"notifications": false,
"url": null,
"created_at": "Wed Sep 21 14:52:58 +0000 2011",
"contributors_enabled": false,
"time_zone": "Quito",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:37:11 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "@amandadupont yeezy on feet like\n #kanye",
"is_quote_status": false,
"in_reply_to_status_id": 694783785087451138,
"id": 694982199418974208,
"favorite_count": 0,
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Mobile Web (M2)</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 37655154,
"indices": [
0,
13
],
"id_str": "37655154",
"screen_name": "AmandaDupont",
"name": "Amanda du-Pont"
}
],
"hashtags": [
{
"indices": [
34,
40
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": "AmandaDupont",
"in_reply_to_user_id": 37655154,
"retweet_count": 0,
"id_str": "694982199418974208",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": true,
"id": 1068659527,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_5_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 43,
"profile_sidebar_border_color": "C0DEED",
"id_str": "1068659527",
"profile_background_color": "C0DEED",
"listed_count": 2,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 179,
"description": "Check out to my hustles @TMZ",
"friends_count": 94,
"location": "Las Vegas Nevada",
"profile_link_color": "0084B4",
"profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_5_normal.png",
"following": false,
"geo_enabled": true,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "uniqueboi01",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 62,
"name": "Unique Boi Mclambo",
"notifications": false,
"url": null,
"created_at": "Mon Jan 07 16:06:15 +0000 2013",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": "37655154",
"lang": "en",
"created_at": "Wed Feb 03 20:34:03 +0000 2016",
"in_reply_to_status_id_str": "694783785087451138",
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @ThePerezHilton: Enjoy my #AmberRose impersonation as we talk #Kanye drama on my latest podcast! Listen at https://t.co/b9XIjrZj0P https\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694981857306279936,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 3911239745,
"indices": [
3,
18
],
"id_str": "3911239745",
"screen_name": "ThePerezHilton",
"name": "Perez"
}
],
"hashtags": [
{
"indices": [
29,
39
],
"text": "AmberRose"
},
{
"indices": [
65,
71
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/b9XIjrZj0P",
"indices": [
110,
133
],
"expanded_url": "http://Play.it/Perez",
"display_url": "Play.it/Perez"
}
],
"media": [
{
"source_user_id": 3911239745,
"source_status_id_str": "694976350722117634",
"expanded_url": "http://twitter.com/ThePerezHilton/status/694976350722117634/video/1",
"display_url": "pic.twitter.com/uY8z30VLgE",
"url": "https://t.co/uY8z30VLgE",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg",
"source_user_id_str": "3911239745",
"source_status_id": 694976350722117634,
"id_str": "694975873653538817",
"sizes": {
"small": {
"h": 191,
"resize": "fit",
"w": 340
},
"large": {
"h": 576,
"resize": "fit",
"w": 1024
},
"medium": {
"h": 338,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
139,
140
],
"type": "photo",
"id": 694975873653538817,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 8,
"id_str": "694981857306279936",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Enjoy my #AmberRose impersonation as we talk #Kanye drama on my latest podcast! Listen at https://t.co/b9XIjrZj0P https://t.co/uY8z30VLgE",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694976350722117634,
"favorite_count": 33,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
9,
19
],
"text": "AmberRose"
},
{
"indices": [
45,
51
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/b9XIjrZj0P",
"indices": [
90,
113
],
"expanded_url": "http://Play.it/Perez",
"display_url": "Play.it/Perez"
}
],
"media": [
{
"expanded_url": "http://twitter.com/ThePerezHilton/status/694976350722117634/video/1",
"display_url": "pic.twitter.com/uY8z30VLgE",
"url": "https://t.co/uY8z30VLgE",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg",
"id_str": "694975873653538817",
"sizes": {
"small": {
"h": 191,
"resize": "fit",
"w": 340
},
"large": {
"h": 576,
"resize": "fit",
"w": 1024
},
"medium": {
"h": 338,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
114,
137
],
"type": "photo",
"id": 694975873653538817,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 8,
"id_str": "694976350722117634",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 3911239745,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": true,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/668948150925721601/UlmmjRS0_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/h0xBEs8dmD",
"indices": [
0,
23
],
"expanded_url": "http://www.PerezHilton.com",
"display_url": "PerezHilton.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 18912,
"profile_sidebar_border_color": "000000",
"id_str": "3911239745",
"profile_background_color": "000000",
"listed_count": 59,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 4556,
"description": "This is the personal account for Perez Hilton. He's a proud dad and founder of one of the most famous websites in the world. Follow it at @PerezHilton",
"friends_count": 670,
"location": "Manhattan, NY",
"profile_link_color": "F5ABB5",
"profile_image_url": "http://pbs.twimg.com/profile_images/668948150925721601/UlmmjRS0_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3911239745/1446500258",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "ThePerezHilton",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 14202,
"name": "Perez",
"notifications": false,
"url": "https://t.co/h0xBEs8dmD",
"created_at": "Fri Oct 09 18:29:57 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:10:48 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 19329393,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/61975046/teddy.jpg",
"verified": true,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/668939771914223616/EYUGQdtq_normal.jpg",
"profile_sidebar_fill_color": "DDFFCC",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/ytELUwm4JO",
"indices": [
0,
22
],
"expanded_url": "http://PerezHilton.com",
"display_url": "PerezHilton.com"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/ytELUvMSda",
"indices": [
24,
47
],
"expanded_url": "http://PerezHilton.com",
"display_url": "PerezHilton.com"
}
]
}
},
"followers_count": 6277580,
"profile_sidebar_border_color": "BDDCAD",
"id_str": "19329393",
"profile_background_color": "9AE4E8",
"listed_count": 41447,
"is_translation_enabled": true,
"utc_offset": -18000,
"statuses_count": 260660,
"description": "This is the account for https://t.co/ytELUvMSda. For the man himself, follow @ThePerezHilton For booking inquiries, email Bookings@perezhilton.com",
"friends_count": 675,
"location": "New York City, New York",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/668939771914223616/EYUGQdtq_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/19329393/1448323206",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/61975046/teddy.jpg",
"screen_name": "PerezHilton",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 116269,
"name": "Perez Hilton",
"notifications": false,
"url": "http://t.co/ytELUwm4JO",
"created_at": "Thu Jan 22 06:47:48 +0000 2009",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:32:41 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Kanye & Pug Calendar is our favorite! #KanyeWest #Kanye https://t.co/rxjfCPLmi5 https://t.co/sticMNmhDL",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694981378052616193,
"favorite_count": 1,
"source": "<a href=\"http://www.hootsuite.com\" rel=\"nofollow\">Hootsuite</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
42,
52
],
"text": "KanyeWest"
},
{
"indices": [
53,
59
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/rxjfCPLmi5",
"indices": [
60,
83
],
"expanded_url": "http://ow.ly/XTFZZ",
"display_url": "ow.ly/XTFZZ"
}
],
"media": [
{
"expanded_url": "http://twitter.com/Vix_Social/status/694981378052616193/photo/1",
"display_url": "pic.twitter.com/sticMNmhDL",
"url": "https://t.co/sticMNmhDL",
"media_url_https": "https://pbs.twimg.com/media/CaUR4XqVIAAYXFf.jpg",
"id_str": "694981377620516864",
"sizes": {
"small": {
"h": 226,
"resize": "fit",
"w": 340
},
"large": {
"h": 430,
"resize": "fit",
"w": 645
},
"medium": {
"h": 400,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
84,
107
],
"type": "photo",
"id": 694981377620516864,
"media_url": "http://pbs.twimg.com/media/CaUR4XqVIAAYXFf.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694981378052616193",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 3805809975,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/651473923993939968/-rt572qD_normal.png",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/JJwD9mESNh",
"indices": [
0,
22
],
"expanded_url": "http://www.vix.com",
"display_url": "vix.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 24,
"profile_sidebar_border_color": "000000",
"id_str": "3805809975",
"profile_background_color": "000000",
"listed_count": 13,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 1101,
"description": "",
"friends_count": 21,
"location": "",
"profile_link_color": "FA743E",
"profile_image_url": "http://pbs.twimg.com/profile_images/651473923993939968/-rt572qD_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3805809975/1444415539",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "Vix_Social",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 0,
"name": "Vix",
"notifications": false,
"url": "http://t.co/JJwD9mESNh",
"created_at": "Mon Sep 28 17:21:11 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:30:47 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Lol #kanye #kimkardashian #amberrose \u2615\ud83d\udc38\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d https://t.co/pyJM7ZoU9K",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694980795254071296,
"favorite_count": 0,
"source": "<a href=\"http://instagram.com\" rel=\"nofollow\">Instagram</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
4,
10
],
"text": "kanye"
},
{
"indices": [
11,
25
],
"text": "kimkardashian"
},
{
"indices": [
26,
36
],
"text": "amberrose"
}
],
"urls": [
{
"url": "https://t.co/pyJM7ZoU9K",
"indices": [
44,
67
],
"expanded_url": "https://www.instagram.com/p/BBVmiNSLcd62QzAeZwJMUep6Bsrozh3hYCbhDo0/",
"display_url": "instagram.com/p/BBVmiNSLcd62\u2026"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694980795254071296",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 544570722,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/2568690208/image_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 674,
"profile_sidebar_border_color": "C0DEED",
"id_str": "544570722",
"profile_background_color": "C0DEED",
"listed_count": 14,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 21670,
"description": "lakers fan!! usc football fan! loving life living life to the fullest",
"friends_count": 1292,
"location": "california 559",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/2568690208/image_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "mrgaines559",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 127,
"name": "MR.GAINE$",
"notifications": false,
"url": null,
"created_at": "Tue Apr 03 18:23:43 +0000 2012",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 20:28:28 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @Nickelback: Good news: we're working on new music. Bad news for us: @kanyewest 'Swish' will be the best album of all time. #SWISH #Kanye",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694980429531709440,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 29546364,
"indices": [
3,
14
],
"id_str": "29546364",
"screen_name": "Nickelback",
"name": "Nickelback"
},
{
"id": 169686021,
"indices": [
72,
82
],
"id_str": "169686021",
"screen_name": "kanyewest",
"name": "KANYE WEST"
}
],
"hashtags": [
{
"indices": [
127,
133
],
"text": "SWISH"
},
{
"indices": [
134,
140
],
"text": "Kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3105,
"id_str": "694980429531709440",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Good news: we're working on new music. Bad news for us: @kanyewest 'Swish' will be the best album of all time. #SWISH #Kanye",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 691676834891563008,
"favorite_count": 6031,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 169686021,
"indices": [
56,
66
],
"id_str": "169686021",
"screen_name": "kanyewest",
"name": "KANYE WEST"
}
],
"hashtags": [
{
"indices": [
111,
117
],
"text": "SWISH"
},
{
"indices": [
118,
124
],
"text": "Kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3105,
"id_str": "691676834891563008",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 29546364,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/431818238184280064/WvVeaods.jpeg",
"verified": true,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/506833000760213504/KpfewtuL_normal.jpeg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/eZLsuVQUJE",
"indices": [
0,
23
],
"expanded_url": "http://www.nickelback.com",
"display_url": "nickelback.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 750181,
"profile_sidebar_border_color": "000000",
"id_str": "29546364",
"profile_background_color": "000000",
"listed_count": 3572,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 9424,
"description": "#Nickelback2016",
"friends_count": 7,
"location": "",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/506833000760213504/KpfewtuL_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/29546364/1435080292",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/431818238184280064/WvVeaods.jpeg",
"screen_name": "Nickelback",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 337,
"name": "Nickelback",
"notifications": false,
"url": "https://t.co/eZLsuVQUJE",
"created_at": "Tue Apr 07 21:11:47 +0000 2009",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Mon Jan 25 17:39:42 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 259896414,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000154828319/Y5iiliC_.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/687519489144057857/M21folz-_normal.jpg",
"profile_sidebar_fill_color": "F6F6F6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 4479,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "259896414",
"profile_background_color": "FFFFFF",
"listed_count": 17,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 61599,
"description": "como no voy a le sonre\u00edr al celular si me la paso jodiendo a @cuddlingcth_ | shawn follows",
"friends_count": 3605,
"location": "colombia not columbia",
"profile_link_color": "000000",
"profile_image_url": "http://pbs.twimg.com/profile_images/687519489144057857/M21folz-_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/259896414/1452751272",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000154828319/Y5iiliC_.png",
"screen_name": "duskycalum",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 3822,
"name": "malu!",
"notifications": false,
"url": null,
"created_at": "Wed Mar 02 20:32:08 +0000 2011",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 20:27:01 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#Kanye https://t.co/qr2UPW4EhV",
"is_quote_status": true,
"in_reply_to_status_id": null,
"id": 694979930237620225,
"favorite_count": 0,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/qr2UPW4EhV",
"indices": [
8,
31
],
"expanded_url": "https://twitter.com/darealamberrose/status/677986985709993985",
"display_url": "twitter.com/darealamberros\u2026"
}
]
},
"quoted_status_id": 677986985709993985,
"retweeted": false,
"coordinates": null,
"quoted_status": {
"contributors": null,
"truncated": false,
"text": "Me and @BLACCHYNA's convos be like \ud83d\ude02\ud83d\ude02\ud83d\ude02 https://t.co/Ps5fQcumng",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 677986985709993985,
"favorite_count": 5039,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 108090221,
"indices": [
7,
17
],
"id_str": "108090221",
"screen_name": "BLACCHYNA",
"name": "Blac Chyna"
}
],
"hashtags": [],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/DaRealAmberRose/status/677986985709993985/photo/1",
"display_url": "pic.twitter.com/Ps5fQcumng",
"url": "https://t.co/Ps5fQcumng",
"media_url_https": "https://pbs.twimg.com/media/CWixkbzUAAEjars.jpg",
"id_str": "677986983415644161",
"sizes": {
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"large": {
"h": 640,
"resize": "fit",
"w": 640
},
"medium": {
"h": 600,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
39,
62
],
"type": "photo",
"id": 677986983415644161,
"media_url": "http://pbs.twimg.com/media/CWixkbzUAAEjars.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3126,
"id_str": "677986985709993985",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 155620016,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/518983632040378369/wrfLhM4M.jpeg",
"verified": true,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/627094542072745985/b4SublFc_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/71JSZUHqG5",
"indices": [
0,
23
],
"expanded_url": "http://Amberroseeyewear.com",
"display_url": "Amberroseeyewear.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 3461392,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "155620016",
"profile_background_color": "C0DEED",
"listed_count": 6288,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 11653,
"description": "Muva, Sebastian's Mom, Bald Head Scallywag, Certified Slut, Feminist, Author, Meme Lover, Fuck yo opinion I do what I want AmberRose@Ncredible.com",
"friends_count": 568,
"location": "South Philly, PA",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/627094542072745985/b4SublFc_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/155620016/1438345964",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/518983632040378369/wrfLhM4M.jpeg",
"screen_name": "DaRealAmberRose",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 21,
"name": "Amber Rose",
"notifications": false,
"url": "https://t.co/71JSZUHqG5",
"created_at": "Mon Jun 14 16:58:19 +0000 2010",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Fri Dec 18 23:01:08 +0000 2015",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
"source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>",
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694979930237620225",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 235326479,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/714923307/853303a04a0720a7bca565f1026a026e.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/679993575166328832/E6CHTM0g_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 589,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "235326479",
"profile_background_color": "C0DEED",
"listed_count": 15,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 68685,
"description": "#GODIsGreat! #MUFC #FergieTheGreatest",
"friends_count": 1588,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/679993575166328832/E6CHTM0g_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/235326479/1360366323",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/714923307/853303a04a0720a7bca565f1026a026e.jpeg",
"screen_name": "DidiM_93",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 537,
"name": "D-Mbokani",
"notifications": false,
"url": null,
"created_at": "Fri Jan 07 22:34:54 +0000 2011",
"contributors_enabled": false,
"time_zone": "Casablanca",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 20:25:02 +0000 2016",
"quoted_status_id_str": "677986985709993985",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "teamkanyedaily: https://t.co/kjcYbWVG4v #Waves #YeezySeason3 (U.S. tickets wil... https://t.co/4llf4EhCmG #Kanye https://t.co/hKZal5GRDx",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694979637919617024,
"favorite_count": 0,
"source": "<a href=\"http://placeholder.com\" rel=\"nofollow\">Jane Eyre Rock Star</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
40,
46
],
"text": "Waves"
},
{
"indices": [
47,
60
],
"text": "YeezySeason3"
},
{
"indices": [
106,
112
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/kjcYbWVG4v",
"indices": [
16,
39
],
"expanded_url": "http://TICKETS.KANYEWEST.COM",
"display_url": "TICKETS.KANYEWEST.COM"
},
{
"url": "https://t.co/4llf4EhCmG",
"indices": [
82,
105
],
"expanded_url": "http://music.fastyellowcheetah.com/site/kanye-west/793790/",
"display_url": "music.fastyellowcheetah.com/site/kanye-wes\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/KanyeRules4Ever/status/694979637919617024/photo/1",
"display_url": "pic.twitter.com/hKZal5GRDx",
"url": "https://t.co/hKZal5GRDx",
"media_url_https": "https://pbs.twimg.com/media/CaUQTBwUUAAiWbc.jpg",
"id_str": "694979636573261824",
"sizes": {
"large": {
"h": 640,
"resize": "fit",
"w": 640
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 600,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
113,
136
],
"type": "photo",
"id": 694979636573261824,
"media_url": "http://pbs.twimg.com/media/CaUQTBwUUAAiWbc.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694979637919617024",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 3386610897,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/624796774864060416/Wec1yI0y_normal.png",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/YBfSNotMRB",
"indices": [
0,
22
],
"expanded_url": "http://music.fastyellowcheetah.com/site/kanye-west/",
"display_url": "music.fastyellowcheetah.com/site/kanye-wes\u2026"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 128,
"profile_sidebar_border_color": "000000",
"id_str": "3386610897",
"profile_background_color": "000000",
"listed_count": 2,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 1637,
"description": "HUGE fan of one of the most talented musicians in history. Uh-huh honey!",
"friends_count": 137,
"location": "Atlanta",
"profile_link_color": "000000",
"profile_image_url": "http://pbs.twimg.com/profile_images/624796774864060416/Wec1yI0y_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3386610897/1437798065",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "KanyeRules4Ever",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 0,
"name": "Kanye Kanye Kanye",
"notifications": false,
"url": "http://t.co/YBfSNotMRB",
"created_at": "Wed Jul 22 01:46:22 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:23:52 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Kanye questioning Khaled about his snapchat activity \n\u2022\n\u2022\n#khaled\n#kanye\n#waves https://t.co/XlqI2o2tWs",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694979146301202432,
"favorite_count": 0,
"source": "<a href=\"http://instagram.com\" rel=\"nofollow\">Instagram</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
58,
65
],
"text": "khaled"
},
{
"indices": [
66,
72
],
"text": "kanye"
},
{
"indices": [
73,
79
],
"text": "waves"
}
],
"urls": [
{
"url": "https://t.co/XlqI2o2tWs",
"indices": [
80,
103
],
"expanded_url": "https://www.instagram.com/p/BBVlyisuSeC/",
"display_url": "instagram.com/p/BBVlyisuSeC/"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694979146301202432",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 184104962,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/667617254717132800/t6v8L-Sz_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/7Dyzgx6L3T",
"indices": [
0,
22
],
"expanded_url": "http://geniuslevels.com",
"display_url": "geniuslevels.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 1332,
"profile_sidebar_border_color": "C0DEED",
"id_str": "184104962",
"profile_background_color": "C0DEED",
"listed_count": 23,
"is_translation_enabled": false,
"utc_offset": 7200,
"statuses_count": 8457,
"description": "Genius Level Online Mag 'let your ideas outlive you' \u2712\ufe0f geniuslevels@gmail.com \u270f\ufe0f",
"friends_count": 1966,
"location": "PE, JHB, Limpopo",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/667617254717132800/t6v8L-Sz_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/184104962/1412444452",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "kagiso_zinx",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 72,
"name": "#geniuslevels.com",
"notifications": false,
"url": "http://t.co/7Dyzgx6L3T",
"created_at": "Sat Aug 28 18:14:18 +0000 2010",
"contributors_enabled": false,
"time_zone": "Pretoria",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:21:55 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#Kanye West: 'Waves' not the greatest album of all time #jobs #500K #: #Kanye West has insisted that his new r... https://t.co/GBrRb4FYve",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694979094157496320,
"favorite_count": 0,
"source": "<a href=\"http://twitterfeed.com\" rel=\"nofollow\">twitterfeed</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "Kanye"
},
{
"indices": [
56,
61
],
"text": "jobs"
},
{
"indices": [
62,
67
],
"text": "500K"
},
{
"indices": [
71,
77
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/GBrRb4FYve",
"indices": [
114,
137
],
"expanded_url": "http://bit.ly/1VN8fKR",
"display_url": "bit.ly/1VN8fKR"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694979094157496320",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2979698255,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/555709861132910595/CDKVi6W5_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/GccsnLDgez",
"indices": [
0,
22
],
"expanded_url": "http://adsensejob.com",
"display_url": "adsensejob.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 1820,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2979698255",
"profile_background_color": "C0DEED",
"listed_count": 826,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 117483,
"description": "#jobs #career #adsense #job #ad #ads",
"friends_count": 1412,
"location": "Weil am Rhein",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/555709861132910595/CDKVi6W5_normal.png",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "adsensejobcom",
"lang": "de",
"profile_background_tile": false,
"favourites_count": 0,
"name": "adsensejob.com",
"notifications": false,
"url": "http://t.co/GccsnLDgez",
"created_at": "Thu Jan 15 12:51:03 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:21:42 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#Kanye #west BET Breaks: Kanye West Keeps It Humble: He's still calling his upcoming album one of the best ever. https://t.co/49tzLYVZBz",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694978793325236224,
"favorite_count": 0,
"source": "<a href=\"http://twitterfeed.com\" rel=\"nofollow\">twitterfeed</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "Kanye"
},
{
"indices": [
7,
12
],
"text": "west"
}
],
"urls": [
{
"url": "https://t.co/49tzLYVZBz",
"indices": [
113,
136
],
"expanded_url": "http://bet.us/1VN6Aor",
"display_url": "bet.us/1VN6Aor"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694978793325236224",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3015364734,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/564925994461442048/6djtTyEz.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/564868165683793920/bxt3liZO_normal.png",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/8NsOvJqHeR",
"indices": [
0,
23
],
"expanded_url": "http://tubebitch.com",
"display_url": "tubebitch.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 2098,
"profile_sidebar_border_color": "000000",
"id_str": "3015364734",
"profile_background_color": "000000",
"listed_count": 17,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 8053,
"description": "TubeBitch. Life's a bitch, sonofabitch, bitch hurts, bitch screw you, bitchslap, bitch be gone, funny bitch, bitch please!",
"friends_count": 1967,
"location": "Online Bitch",
"profile_link_color": "BB0000",
"profile_image_url": "http://pbs.twimg.com/profile_images/564868165683793920/bxt3liZO_normal.png",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/564925994461442048/6djtTyEz.png",
"screen_name": "TubeBitchdotcom",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 178,
"name": "Tube Bitch",
"notifications": false,
"url": "https://t.co/8NsOvJqHeR",
"created_at": "Mon Feb 09 19:22:16 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:20:31 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Stanky Leg frankhavemercy #yeezyboost950 #kanye #illustration #art #vector #fashion #streetwear\u2026 https://t.co/I8mXIqhLAl",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694977512816902145,
"favorite_count": 0,
"source": "<a href=\"http://instagram.com\" rel=\"nofollow\">Instagram</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
27,
41
],
"text": "yeezyboost950"
},
{
"indices": [
42,
48
],
"text": "kanye"
},
{
"indices": [
49,
62
],
"text": "illustration"
},
{
"indices": [
63,
67
],
"text": "art"
},
{
"indices": [
68,
75
],
"text": "vector"
},
{
"indices": [
76,
84
],
"text": "fashion"
},
{
"indices": [
85,
96
],
"text": "streetwear"
}
],
"urls": [
{
"url": "https://t.co/I8mXIqhLAl",
"indices": [
98,
121
],
"expanded_url": "https://www.instagram.com/p/BBVlC-oRXVf/",
"display_url": "instagram.com/p/BBVlC-oRXVf/"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694977512816902145",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 29937950,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/191701444/statecanyonwidelz9.jpg",
"verified": false,
"profile_text_color": "B51D25",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/659190837788676096/Hnc9_NNZ_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 501,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "29937950",
"profile_background_color": "0A0102",
"listed_count": 17,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 30285,
"description": "Creator since '87",
"friends_count": 199,
"location": "C h i c a g o ",
"profile_link_color": "7BAAB8",
"profile_image_url": "http://pbs.twimg.com/profile_images/659190837788676096/Hnc9_NNZ_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/29937950/1416861682",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/191701444/statecanyonwidelz9.jpg",
"screen_name": "FrescoQuick",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 297,
"name": "IG:FrescoQuick",
"notifications": false,
"url": null,
"created_at": "Thu Apr 09 06:43:29 +0000 2009",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "ht",
"created_at": "Wed Feb 03 20:15:25 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "ht",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @ThePerezHilton: Enjoy my #AmberRose impersonation as we talk #Kanye drama on my latest podcast! Listen at https://t.co/b9XIjrZj0P https\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694977230246666241,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 3911239745,
"indices": [
3,
18
],
"id_str": "3911239745",
"screen_name": "ThePerezHilton",
"name": "Perez"
}
],
"hashtags": [
{
"indices": [
29,
39
],
"text": "AmberRose"
},
{
"indices": [
65,
71
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/b9XIjrZj0P",
"indices": [
110,
133
],
"expanded_url": "http://Play.it/Perez",
"display_url": "Play.it/Perez"
}
],
"media": [
{
"source_user_id": 3911239745,
"source_status_id_str": "694976350722117634",
"expanded_url": "http://twitter.com/ThePerezHilton/status/694976350722117634/video/1",
"display_url": "pic.twitter.com/uY8z30VLgE",
"url": "https://t.co/uY8z30VLgE",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg",
"source_user_id_str": "3911239745",
"source_status_id": 694976350722117634,
"id_str": "694975873653538817",
"sizes": {
"small": {
"h": 191,
"resize": "fit",
"w": 340
},
"large": {
"h": 576,
"resize": "fit",
"w": 1024
},
"medium": {
"h": 338,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
139,
140
],
"type": "photo",
"id": 694975873653538817,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 8,
"id_str": "694977230246666241",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Enjoy my #AmberRose impersonation as we talk #Kanye drama on my latest podcast! Listen at https://t.co/b9XIjrZj0P https://t.co/uY8z30VLgE",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694976350722117634,
"favorite_count": 33,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
9,
19
],
"text": "AmberRose"
},
{
"indices": [
45,
51
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/b9XIjrZj0P",
"indices": [
90,
113
],
"expanded_url": "http://Play.it/Perez",
"display_url": "Play.it/Perez"
}
],
"media": [
{
"expanded_url": "http://twitter.com/ThePerezHilton/status/694976350722117634/video/1",
"display_url": "pic.twitter.com/uY8z30VLgE",
"url": "https://t.co/uY8z30VLgE",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg",
"id_str": "694975873653538817",
"sizes": {
"small": {
"h": 191,
"resize": "fit",
"w": 340
},
"large": {
"h": 576,
"resize": "fit",
"w": 1024
},
"medium": {
"h": 338,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
114,
137
],
"type": "photo",
"id": 694975873653538817,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 8,
"id_str": "694976350722117634",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 3911239745,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": true,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/668948150925721601/UlmmjRS0_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/h0xBEs8dmD",
"indices": [
0,
23
],
"expanded_url": "http://www.PerezHilton.com",
"display_url": "PerezHilton.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 18912,
"profile_sidebar_border_color": "000000",
"id_str": "3911239745",
"profile_background_color": "000000",
"listed_count": 59,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 4556,
"description": "This is the personal account for Perez Hilton. He's a proud dad and founder of one of the most famous websites in the world. Follow it at @PerezHilton",
"friends_count": 670,
"location": "Manhattan, NY",
"profile_link_color": "F5ABB5",
"profile_image_url": "http://pbs.twimg.com/profile_images/668948150925721601/UlmmjRS0_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3911239745/1446500258",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "ThePerezHilton",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 14202,
"name": "Perez",
"notifications": false,
"url": "https://t.co/h0xBEs8dmD",
"created_at": "Fri Oct 09 18:29:57 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:10:48 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2169027672,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/637912629911154688/zoW6A3Wh_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 352,
"profile_sidebar_border_color": "000000",
"id_str": "2169027672",
"profile_background_color": "ABB8C2",
"listed_count": 25,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 7226,
"description": "",
"friends_count": 206,
"location": "United Kingdom",
"profile_link_color": "0099B9",
"profile_image_url": "http://pbs.twimg.com/profile_images/637912629911154688/zoW6A3Wh_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2169027672/1454273145",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif",
"screen_name": "wendymurg123",
"lang": "en-gb",
"profile_background_tile": false,
"favourites_count": 35751,
"name": "wendy",
"notifications": false,
"url": null,
"created_at": "Fri Nov 01 20:20:08 +0000 2013",
"contributors_enabled": false,
"time_zone": "London",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:14:18 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @Tfieldsart: @PaperFrank work ethic is motivating as an artist\u2026..young #kanye grind.",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694976499246567424,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 22933551,
"indices": [
3,
14
],
"id_str": "22933551",
"screen_name": "Tfieldsart",
"name": "T.Fields"
},
{
"id": 121642146,
"indices": [
16,
27
],
"id_str": "121642146",
"screen_name": "PaperFrank",
"name": "Evil King Lemons"
}
],
"hashtags": [
{
"indices": [
74,
80
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "694976499246567424",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "@PaperFrank work ethic is motivating as an artist\u2026..young #kanye grind.",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694976167753994241,
"favorite_count": 0,
"source": "<a href=\"http://itunes.apple.com/us/app/twitter/id409789998?mt=12\" rel=\"nofollow\">Twitter for Mac</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 121642146,
"indices": [
0,
11
],
"id_str": "121642146",
"screen_name": "PaperFrank",
"name": "Evil King Lemons"
}
],
"hashtags": [
{
"indices": [
58,
64
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": "PaperFrank",
"in_reply_to_user_id": 121642146,
"retweet_count": 1,
"id_str": "694976167753994241",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 22933551,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/375921664/teebc_1.jpg",
"verified": false,
"profile_text_color": "E61515",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/583346200520335360/7q4wUWbf_normal.png",
"profile_sidebar_fill_color": "252429",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/orzApPqctL",
"indices": [
0,
23
],
"expanded_url": "http://www.artbytfields.com",
"display_url": "artbytfields.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 1166,
"profile_sidebar_border_color": "181A1E",
"id_str": "22933551",
"profile_background_color": "1A1B1F",
"listed_count": 12,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 12234,
"description": "Instagram: Tattoo/Portrait Artist @Tfieldsart @Tfieldstattoos",
"friends_count": 553,
"location": ".Food...Art...Pizza...Bikes.",
"profile_link_color": "EDA023",
"profile_image_url": "http://pbs.twimg.com/profile_images/583346200520335360/7q4wUWbf_normal.png",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/22933551/1429428780",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/375921664/teebc_1.jpg",
"screen_name": "Tfieldsart",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 214,
"name": "T.Fields",
"notifications": false,
"url": "https://t.co/orzApPqctL",
"created_at": "Thu Mar 05 15:44:48 +0000 2009",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": "121642146",
"lang": "en",
"created_at": "Wed Feb 03 20:10:05 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 121642146,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/352451767/BunnyHeadBackground.jpg",
"verified": false,
"profile_text_color": "1A190F",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/694974684736151552/nqvfoCyy_normal.jpg",
"profile_sidebar_fill_color": "FFFFFF",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/9wunmWR5pd",
"indices": [
0,
23
],
"expanded_url": "http://www.paperfrank.com",
"display_url": "paperfrank.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 8091,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "121642146",
"profile_background_color": "0A080A",
"listed_count": 102,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 121239,
"description": "Losing my mind and wasting my time. BusinessInquires: paperfrankworks@gmail",
"friends_count": 103,
"location": "WorldWide | Atlanta",
"profile_link_color": "A19891",
"profile_image_url": "http://pbs.twimg.com/profile_images/694974684736151552/nqvfoCyy_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/121642146/1454134849",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/352451767/BunnyHeadBackground.jpg",
"screen_name": "PaperFrank",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 7900,
"name": "Evil King Lemons",
"notifications": false,
"url": "https://t.co/9wunmWR5pd",
"created_at": "Wed Mar 10 04:02:38 +0000 2010",
"contributors_enabled": false,
"time_zone": "Quito",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 20:11:24 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Enjoy my #AmberRose impersonation as we talk #Kanye drama on my latest podcast! Listen at https://t.co/b9XIjrZj0P https://t.co/uY8z30VLgE",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694976350722117634,
"favorite_count": 33,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
9,
19
],
"text": "AmberRose"
},
{
"indices": [
45,
51
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/b9XIjrZj0P",
"indices": [
90,
113
],
"expanded_url": "http://Play.it/Perez",
"display_url": "Play.it/Perez"
}
],
"media": [
{
"expanded_url": "http://twitter.com/ThePerezHilton/status/694976350722117634/video/1",
"display_url": "pic.twitter.com/uY8z30VLgE",
"url": "https://t.co/uY8z30VLgE",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg",
"id_str": "694975873653538817",
"sizes": {
"small": {
"h": 191,
"resize": "fit",
"w": 340
},
"large": {
"h": 576,
"resize": "fit",
"w": 1024
},
"medium": {
"h": 338,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
114,
137
],
"type": "photo",
"id": 694975873653538817,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/694975873653538817/pu/img/MF75lrXvnre0l-pb.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 8,
"id_str": "694976350722117634",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 3911239745,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": true,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/668948150925721601/UlmmjRS0_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/h0xBEs8dmD",
"indices": [
0,
23
],
"expanded_url": "http://www.PerezHilton.com",
"display_url": "PerezHilton.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 18912,
"profile_sidebar_border_color": "000000",
"id_str": "3911239745",
"profile_background_color": "000000",
"listed_count": 59,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 4556,
"description": "This is the personal account for Perez Hilton. He's a proud dad and founder of one of the most famous websites in the world. Follow it at @PerezHilton",
"friends_count": 670,
"location": "Manhattan, NY",
"profile_link_color": "F5ABB5",
"profile_image_url": "http://pbs.twimg.com/profile_images/668948150925721601/UlmmjRS0_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3911239745/1446500258",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "ThePerezHilton",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 14202,
"name": "Perez",
"notifications": false,
"url": "https://t.co/h0xBEs8dmD",
"created_at": "Fri Oct 09 18:29:57 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:10:48 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Bored of waiting for a #Kanye tour announcement for the UK",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694976309865402369,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
23,
29
],
"text": "Kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694976309865402369",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 61757741,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000085276887/e83a0e3e8d06644202a9e4d477cf6d33.jpeg",
"verified": false,
"profile_text_color": "FF0FC7",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/668783801435299840/NKzIwvED_normal.jpg",
"profile_sidebar_fill_color": "0A0A0A",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/YThGNu43jb",
"indices": [
0,
23
],
"expanded_url": "http://www.affordableprinting.co.uk",
"display_url": "affordableprinting.co.uk"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 1561,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "61757741",
"profile_background_color": "9AE4E8",
"listed_count": 45,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 21607,
"description": "Proud Auntie || Dream Chaser || Fur Baby Mum || Follow My Brand || @APC_Printing || #Print #BNI || DC for Essex || Building My Empire",
"friends_count": 730,
"location": "Wherever The Beat Takes Me \u2764 ",
"profile_link_color": "7217BD",
"profile_image_url": "http://pbs.twimg.com/profile_images/668783801435299840/NKzIwvED_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/61757741/1380529471",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000085276887/e83a0e3e8d06644202a9e4d477cf6d33.jpeg",
"screen_name": "Clair_Trebes",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 541,
"name": "Clair Trebes",
"notifications": false,
"url": "https://t.co/YThGNu43jb",
"created_at": "Fri Jul 31 12:18:24 +0000 2009",
"contributors_enabled": false,
"time_zone": "London",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 20:10:38 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "@PaperFrank work ethic is motivating as an artist\u2026..young #kanye grind.",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694976167753994241,
"favorite_count": 0,
"source": "<a href=\"http://itunes.apple.com/us/app/twitter/id409789998?mt=12\" rel=\"nofollow\">Twitter for Mac</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 121642146,
"indices": [
0,
11
],
"id_str": "121642146",
"screen_name": "PaperFrank",
"name": "Evil King Lemons"
}
],
"hashtags": [
{
"indices": [
58,
64
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": "PaperFrank",
"in_reply_to_user_id": 121642146,
"retweet_count": 1,
"id_str": "694976167753994241",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 22933551,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/375921664/teebc_1.jpg",
"verified": false,
"profile_text_color": "E61515",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/583346200520335360/7q4wUWbf_normal.png",
"profile_sidebar_fill_color": "252429",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/orzApPqctL",
"indices": [
0,
23
],
"expanded_url": "http://www.artbytfields.com",
"display_url": "artbytfields.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 1166,
"profile_sidebar_border_color": "181A1E",
"id_str": "22933551",
"profile_background_color": "1A1B1F",
"listed_count": 12,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 12234,
"description": "Instagram: Tattoo/Portrait Artist @Tfieldsart @Tfieldstattoos",
"friends_count": 553,
"location": ".Food...Art...Pizza...Bikes.",
"profile_link_color": "EDA023",
"profile_image_url": "http://pbs.twimg.com/profile_images/583346200520335360/7q4wUWbf_normal.png",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/22933551/1429428780",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/375921664/teebc_1.jpg",
"screen_name": "Tfieldsart",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 214,
"name": "T.Fields",
"notifications": false,
"url": "https://t.co/orzApPqctL",
"created_at": "Thu Mar 05 15:44:48 +0000 2009",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": "121642146",
"lang": "en",
"created_at": "Wed Feb 03 20:10:05 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "milk\u00e3e (@gliantmoon) HappyGrumpy score is 0.9, Neutral. Find out more at https://t.co/L0YlJaMD7C #Kanye #critique",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694974504116727808,
"favorite_count": 0,
"source": "<a href=\"http://www.happygrumpy.com\" rel=\"nofollow\">HappyGrumpyB</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 2258983234,
"indices": [
8,
19
],
"id_str": "2258983234",
"screen_name": "gliantmoon",
"name": "milk\u00e3e"
}
],
"hashtags": [
{
"indices": [
97,
103
],
"text": "Kanye"
},
{
"indices": [
104,
113
],
"text": "critique"
}
],
"urls": [
{
"url": "https://t.co/L0YlJaMD7C",
"indices": [
73,
96
],
"expanded_url": "https://www.happygrumpy.com/twitter/gliantmoon/milk%C3%A3e",
"display_url": "happygrumpy.com/twitter/gliant\u2026"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694974504116727808",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3216936652,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/593021818979655680/MlpgT4BR_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/FRdVOiolRg",
"indices": [
0,
23
],
"expanded_url": "https://www.happygrumpy.com",
"display_url": "happygrumpy.com"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/FRdVOiolRg",
"indices": [
66,
89
],
"expanded_url": "https://www.happygrumpy.com",
"display_url": "happygrumpy.com"
}
]
}
},
"followers_count": 137,
"profile_sidebar_border_color": "C0DEED",
"id_str": "3216936652",
"profile_background_color": "C0DEED",
"listed_count": 204,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 6479,
"description": "Tweet on #politics, #news, #media & #forex #market. Volunteer for https://t.co/FRdVOiolRg | @happygrumpy_com",
"friends_count": 126,
"location": "London, England",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/593021818979655680/MlpgT4BR_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "kornel_mccalen",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 5068,
"name": "Kornel McCalen",
"notifications": false,
"url": "https://t.co/FRdVOiolRg",
"created_at": "Tue Apr 28 11:52:19 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:03:28 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @giphy: Is anyone else now even more excited about #WAVES? #Kanye\u00a0https://t.co/SUEyxFCtRj https://t.co/8onP522juf",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694973655969894404,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 1020383864,
"indices": [
3,
9
],
"id_str": "1020383864",
"screen_name": "giphy",
"name": "GIPHY"
}
],
"hashtags": [
{
"indices": [
54,
60
],
"text": "WAVES"
},
{
"indices": [
62,
68
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/SUEyxFCtRj",
"indices": [
69,
92
],
"expanded_url": "http://gph.is/1PTkvVZ",
"display_url": "gph.is/1PTkvVZ"
},
{
"url": "https://t.co/8onP522juf",
"indices": [
93,
116
],
"expanded_url": "http://twitter.com/giphy/status/692442280117063680/photo/1",
"display_url": "pic.twitter.com/8onP522juf"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 93,
"id_str": "694973655969894404",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Is anyone else now even more excited about #WAVES? #Kanye\u00a0https://t.co/SUEyxFCtRj https://t.co/8onP522juf",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 692442280117063680,
"favorite_count": 137,
"source": "<a href=\"http://giphy.com\" rel=\"nofollow\">Giphy Share</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
43,
49
],
"text": "WAVES"
},
{
"indices": [
51,
57
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/SUEyxFCtRj",
"indices": [
58,
81
],
"expanded_url": "http://gph.is/1PTkvVZ",
"display_url": "gph.is/1PTkvVZ"
},
{
"url": "https://t.co/8onP522juf",
"indices": [
82,
105
],
"expanded_url": "http://twitter.com/giphy/status/692442280117063680/photo/1",
"display_url": "pic.twitter.com/8onP522juf"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 93,
"id_str": "692442280117063680",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 1020383864,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000168903681/QAGNj7mA.png",
"verified": true,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/3570326997/4548e666a9268b1fabdf8ce93161b36d_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/CFrDx2ofpD",
"indices": [
0,
22
],
"expanded_url": "http://giphy.com",
"display_url": "giphy.com"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/Y48wWPW3w2",
"indices": [
15,
38
],
"expanded_url": "http://www.appstore.com/giphycam",
"display_url": "appstore.com/giphycam"
}
]
}
},
"followers_count": 144339,
"profile_sidebar_border_color": "000000",
"id_str": "1020383864",
"profile_background_color": "050505",
"listed_count": 496,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 15494,
"description": "GIPHY CAM 2.0: https://t.co/Y48wWPW3w2",
"friends_count": 1314,
"location": "New York, NY",
"profile_link_color": "00CCFF",
"profile_image_url": "http://pbs.twimg.com/profile_images/3570326997/4548e666a9268b1fabdf8ce93161b36d_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1020383864/1425325143",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000168903681/QAGNj7mA.png",
"screen_name": "giphy",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 10837,
"name": "GIPHY",
"notifications": false,
"url": "http://t.co/CFrDx2ofpD",
"created_at": "Tue Dec 18 18:33:45 +0000 2012",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Jan 27 20:21:19 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 330149002,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/587221463461052416/kG43CXYc.jpg",
"verified": false,
"profile_text_color": "666666",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/694974068131520516/JkZ04cPY_normal.jpg",
"profile_sidebar_fill_color": "252429",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/BHYnBcPhkK",
"indices": [
0,
23
],
"expanded_url": "http://facebook.com/klasickbyjiqcee",
"display_url": "facebook.com/klasickbyjiqcee"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 1749,
"profile_sidebar_border_color": "000000",
"id_str": "330149002",
"profile_background_color": "6464B8",
"listed_count": 14,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 20677,
"description": "Klasick CEO , Graphic Designer , Animator , Artist and Basketballer IG & Snapchat : @jiqcee_klasick For Business : klasickbyjiqcee@gmail.com",
"friends_count": 591,
"location": " Nairobi",
"profile_link_color": "0AD3F7",
"profile_image_url": "http://pbs.twimg.com/profile_images/694974068131520516/JkZ04cPY_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/330149002/1451695297",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/587221463461052416/kG43CXYc.jpg",
"screen_name": "jiqcee_klasick",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 5151,
"name": "Jiqcee",
"notifications": false,
"url": "https://t.co/BHYnBcPhkK",
"created_at": "Wed Jul 06 05:21:05 +0000 2011",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 20:00:06 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#drake #jcole #coleworld #kanyewest #kanye #yeezy https://t.co/xrQsvXs8xZ https://t.co/gFukKr6lgY",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694972925850607616,
"favorite_count": 1,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "drake"
},
{
"indices": [
7,
13
],
"text": "jcole"
},
{
"indices": [
14,
24
],
"text": "coleworld"
},
{
"indices": [
25,
35
],
"text": "kanyewest"
},
{
"indices": [
36,
42
],
"text": "kanye"
},
{
"indices": [
43,
49
],
"text": "yeezy"
}
],
"urls": [
{
"url": "https://t.co/xrQsvXs8xZ",
"indices": [
50,
73
],
"expanded_url": "https://www.youtube.com/watch?v=573ECsGb9So&xiP",
"display_url": "youtube.com/watch?v=573ECs\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/puvymewybaqy/status/694972925850607616/photo/1",
"display_url": "pic.twitter.com/gFukKr6lgY",
"url": "https://t.co/gFukKr6lgY",
"media_url_https": "https://pbs.twimg.com/media/CaUKMUaWIAA-oGb.jpg",
"id_str": "694972924252528640",
"sizes": {
"large": {
"h": 507,
"resize": "fit",
"w": 507
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 507,
"resize": "fit",
"w": 507
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
74,
97
],
"type": "photo",
"id": 694972924252528640,
"media_url": "http://pbs.twimg.com/media/CaUKMUaWIAA-oGb.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694972925850607616",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": true,
"id": 2416863522,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 33,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2416863522",
"profile_background_color": "C0DEED",
"listed_count": 30,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 3512,
"description": "",
"friends_count": 63,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "puvymewybaqy",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 2870,
"name": "Joleen Featenby",
"notifications": false,
"url": null,
"created_at": "Sat Mar 29 03:35:50 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 19:57:12 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @HastieBeatz: #TBT to 2013. I waited in Glasgow for #Yeezus hype. Damn right I'm doing #WAVES in a cinema. Yeciple for life #Kanye https\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694970983099322369,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 27686319,
"indices": [
3,
15
],
"id_str": "27686319",
"screen_name": "HastieBeatz",
"name": "Scott Hastie"
}
],
"hashtags": [
{
"indices": [
17,
21
],
"text": "TBT"
},
{
"indices": [
55,
62
],
"text": "Yeezus"
},
{
"indices": [
90,
96
],
"text": "WAVES"
},
{
"indices": [
127,
133
],
"text": "Kanye"
}
],
"urls": [],
"media": [
{
"source_user_id": 27686319,
"source_status_id_str": "694958028727148545",
"expanded_url": "http://twitter.com/HastieBeatz/status/694958028727148545/photo/1",
"display_url": "pic.twitter.com/9MEbGitLWx",
"url": "https://t.co/9MEbGitLWx",
"media_url_https": "https://pbs.twimg.com/media/CaT8pN1W4AA7R9q.jpg",
"source_user_id_str": "27686319",
"source_status_id": 694958028727148545,
"id_str": "694958027540193280",
"sizes": {
"large": {
"h": 800,
"resize": "fit",
"w": 600
},
"small": {
"h": 453,
"resize": "fit",
"w": 340
},
"medium": {
"h": 800,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
139,
140
],
"type": "photo",
"id": 694958027540193280,
"media_url": "http://pbs.twimg.com/media/CaT8pN1W4AA7R9q.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "694970983099322369",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "#TBT to 2013. I waited in Glasgow for #Yeezus hype. Damn right I'm doing #WAVES in a cinema. Yeciple for life #Kanye https://t.co/9MEbGitLWx",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694958028727148545,
"favorite_count": 1,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
4
],
"text": "TBT"
},
{
"indices": [
38,
45
],
"text": "Yeezus"
},
{
"indices": [
73,
79
],
"text": "WAVES"
},
{
"indices": [
110,
116
],
"text": "Kanye"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/HastieBeatz/status/694958028727148545/photo/1",
"display_url": "pic.twitter.com/9MEbGitLWx",
"url": "https://t.co/9MEbGitLWx",
"media_url_https": "https://pbs.twimg.com/media/CaT8pN1W4AA7R9q.jpg",
"id_str": "694958027540193280",
"sizes": {
"large": {
"h": 800,
"resize": "fit",
"w": 600
},
"small": {
"h": 453,
"resize": "fit",
"w": 340
},
"medium": {
"h": 800,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
117,
140
],
"type": "photo",
"id": 694958027540193280,
"media_url": "http://pbs.twimg.com/media/CaT8pN1W4AA7R9q.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "694958028727148545",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 27686319,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/874250631/41c1de1f95267c01310e0b904bd44cde.jpeg",
"verified": false,
"profile_text_color": "666666",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/673997934204207104/EJbo8wZ0_normal.jpg",
"profile_sidebar_fill_color": "252429",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/SIk0LpfGhJ",
"indices": [
0,
23
],
"expanded_url": "http://scotthastie.co.uk",
"display_url": "scotthastie.co.uk"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 497,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "27686319",
"profile_background_color": "1A1B1F",
"listed_count": 16,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 5481,
"description": "Dep.Station Manager @SparkSunderland||UoS Radio MA Grad||Crazy About New Music and TV/Movie/Sport Culture|| Playlist Maker & Radio Ideas Person",
"friends_count": 854,
"location": "A Scot in Sunderland, UK",
"profile_link_color": "ABB8C2",
"profile_image_url": "http://pbs.twimg.com/profile_images/673997934204207104/EJbo8wZ0_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/27686319/1441565172",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/874250631/41c1de1f95267c01310e0b904bd44cde.jpeg",
"screen_name": "HastieBeatz",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 541,
"name": "Scott Hastie",
"notifications": false,
"url": "https://t.co/SIk0LpfGhJ",
"created_at": "Mon Mar 30 17:29:52 +0000 2009",
"contributors_enabled": false,
"time_zone": "Edinburgh",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 18:58:00 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 4851909525,
"profile_background_image_url_https": null,
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/692311563445891073/68u5aJfT_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 232,
"profile_sidebar_border_color": "C0DEED",
"id_str": "4851909525",
"profile_background_color": "F5F8FA",
"listed_count": 12,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 4181,
"description": "BRO!",
"friends_count": 1890,
"location": "",
"profile_link_color": "2B7BB9",
"profile_image_url": "http://pbs.twimg.com/profile_images/692311563445891073/68u5aJfT_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": null,
"screen_name": "YZYWAVES",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 3059,
"name": "#YZYWAVES",
"notifications": false,
"url": null,
"created_at": "Wed Jan 27 02:15:24 +0000 2016",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 19:49:28 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "@livefrome no but considering #Kanye West has been doing so well and now he opens his mouth yes",
"is_quote_status": false,
"in_reply_to_status_id": 694908537869217796,
"id": 694970779973320704,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 621284187,
"indices": [
0,
10
],
"id_str": "621284187",
"screen_name": "livefrome",
"name": "Live From E!"
}
],
"hashtags": [
{
"indices": [
30,
36
],
"text": "Kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": "livefrome",
"in_reply_to_user_id": 621284187,
"retweet_count": 0,
"id_str": "694970779973320704",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 237531517,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/300006789/ekg-machines.jpg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/608826351165014016/iMdFvA0W_normal.jpg",
"profile_sidebar_fill_color": "C0DFEC",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 142,
"profile_sidebar_border_color": "A8C7F7",
"id_str": "237531517",
"profile_background_color": "022330",
"listed_count": 5,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 3543,
"description": "Born and raised in New York. Now I live in florida. huge sports nut. NY jets all the way",
"friends_count": 814,
"location": "tampa fl",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/608826351165014016/iMdFvA0W_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/237531517/1443988654",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/300006789/ekg-machines.jpg",
"screen_name": "bigcuse787",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 515,
"name": "Danielle Mancuso",
"notifications": false,
"url": null,
"created_at": "Thu Jan 13 01:50:50 +0000 2011",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": "621284187",
"lang": "en",
"created_at": "Wed Feb 03 19:48:40 +0000 2016",
"in_reply_to_status_id_str": "694908537869217796",
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Best #kanye #album #vote",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694970389189898240,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
5,
11
],
"text": "kanye"
},
{
"indices": [
12,
18
],
"text": "album"
},
{
"indices": [
19,
24
],
"text": "vote"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694970389189898240",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 774984259,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/671908087/1ed2a29a7cd79f496ad932233e6cc65a.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/687664538364329984/h0LK4M4o_normal.jpg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"url": {
"urls": [
{
"url": "http://bit.ly/1y7W7NT",
"indices": [
0,
21
],
"expanded_url": null
}
]
},
"description": {
"urls": []
}
},
"followers_count": 194,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "774984259",
"profile_background_color": "131516",
"listed_count": 3,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 4726,
"description": "Demand to see life's manager.\n\ndon't ask me to fix your computer\n\nsnap: teejayoconnor",
"friends_count": 307,
"location": "As If",
"profile_link_color": "CE1A1A",
"profile_image_url": "http://pbs.twimg.com/profile_images/687664538364329984/h0LK4M4o_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/774984259/1445826782",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/671908087/1ed2a29a7cd79f496ad932233e6cc65a.jpeg",
"screen_name": "notTJOConnor",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 1469,
"name": "TJ",
"notifications": false,
"url": "http://bit.ly/1y7W7NT",
"created_at": "Thu Aug 23 02:29:25 +0000 2012",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 19:47:07 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Breakfast club speaks to Max B from Jail. https://t.co/Yi6w8KIXNE #maxB #Waves #Kanye",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694970106309394433,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
66,
71
],
"text": "maxB"
},
{
"indices": [
72,
78
],
"text": "Waves"
},
{
"indices": [
79,
85
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/Yi6w8KIXNE",
"indices": [
42,
65
],
"expanded_url": "http://youtu.be/-vvHZ0yv0rY",
"display_url": "youtu.be/-vvHZ0yv0rY"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694970106309394433",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 399362388,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/678943176464449536/PX4_rViF_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 174,
"profile_sidebar_border_color": "000000",
"id_str": "399362388",
"profile_background_color": "000000",
"listed_count": 7,
"is_translation_enabled": false,
"utc_offset": -36000,
"statuses_count": 1059,
"description": "Music Producer Guy. Video Content Creator/ Editor. Formally at Shazam... Before that, EMI Music and also 19 Entertainment",
"friends_count": 315,
"location": "",
"profile_link_color": "FA743E",
"profile_image_url": "http://pbs.twimg.com/profile_images/678943176464449536/PX4_rViF_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/399362388/1454279782",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif",
"screen_name": "IamEKobla",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 33,
"name": "Emmanuel",
"notifications": false,
"url": null,
"created_at": "Thu Oct 27 11:41:52 +0000 2011",
"contributors_enabled": false,
"time_zone": "Hawaii",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 19:45:59 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @AlecMoore: Horses are more similar to donkeys than horseplay is to assplay.\n\n#Kanye\n#KanyeWest\n#AmberRose",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694969478703087616,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 25521823,
"indices": [
3,
13
],
"id_str": "25521823",
"screen_name": "AlecMoore",
"name": "Alec Moore"
}
],
"hashtags": [
{
"indices": [
81,
87
],
"text": "Kanye"
},
{
"indices": [
88,
98
],
"text": "KanyeWest"
},
{
"indices": [
99,
109
],
"text": "AmberRose"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "694969478703087616",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Horses are more similar to donkeys than horseplay is to assplay.\n\n#Kanye\n#KanyeWest\n#AmberRose",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694964817480691712,
"favorite_count": 2,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
66,
72
],
"text": "Kanye"
},
{
"indices": [
73,
83
],
"text": "KanyeWest"
},
{
"indices": [
84,
94
],
"text": "AmberRose"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "694964817480691712",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 25521823,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000514057537/b2c42c5f302ca8bf0df914323319d172_normal.jpeg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/twMLSrNDQq",
"indices": [
0,
22
],
"expanded_url": "http://www.facebook.com/TPOffender",
"display_url": "facebook.com/TPOffender"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 35117,
"profile_sidebar_border_color": "C0DEED",
"id_str": "25521823",
"profile_background_color": "C0DEED",
"listed_count": 492,
"is_translation_enabled": false,
"utc_offset": -14400,
"statuses_count": 2265,
"description": "Writing comedy scripts. Or wasting time writing jokes on Twitter. Someone should probably hire me so I waste less time. Watch web series The Public Offender.",
"friends_count": 34766,
"location": "LA",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/378800000514057537/b2c42c5f302ca8bf0df914323319d172_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "AlecMoore",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 898,
"name": "Alec Moore",
"notifications": false,
"url": "http://t.co/twMLSrNDQq",
"created_at": "Fri Mar 20 15:34:48 +0000 2009",
"contributors_enabled": false,
"time_zone": "Atlantic Time (Canada)",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 19:24:58 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 140067289,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/417566041733332992/OMPNlH6l_normal.jpeg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/J0b6N28c3V",
"indices": [
0,
23
],
"expanded_url": "http://www.qhe757.squarespace.com",
"display_url": "qhe757.squarespace.com"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/rJhPp60BSw",
"indices": [
108,
131
],
"expanded_url": "http://Facebook.com/nasheen1",
"display_url": "Facebook.com/nasheen1"
}
]
}
},
"followers_count": 3253,
"profile_sidebar_border_color": "EEEEEE",
"id_str": "140067289",
"profile_background_color": "131516",
"listed_count": 32,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 14442,
"description": "Father, blogger, small business owner, writer, poet, artist, lover of life & people. Follow & get followed! https://t.co/rJhPp60BSw",
"friends_count": 3233,
"location": "Hampton Roads, Va",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/417566041733332992/OMPNlH6l_normal.jpeg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/140067289/1372259527",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif",
"screen_name": "Nasheen757",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 959,
"name": "Nasheen Staton",
"notifications": false,
"url": "https://t.co/J0b6N28c3V",
"created_at": "Tue May 04 13:34:45 +0000 2010",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 19:43:30 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#joshduhamel #jayz #jcole #kanye\nhttps://t.co/2KOTS499No https://t.co/TZACz501xT",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694968674126581760,
"favorite_count": 1,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
12
],
"text": "joshduhamel"
},
{
"indices": [
13,
18
],
"text": "jayz"
},
{
"indices": [
19,
25
],
"text": "jcole"
},
{
"indices": [
26,
32
],
"text": "kanye"
}
],
"urls": [
{
"url": "https://t.co/2KOTS499No",
"indices": [
33,
56
],
"expanded_url": "http://www.MyCrazyLifeStory.com/2016Tattoos48",
"display_url": "MyCrazyLifeStory.com/2016Tattoos48"
}
],
"media": [
{
"expanded_url": "http://twitter.com/zyhiludihawi/status/694968674126581760/photo/1",
"display_url": "pic.twitter.com/TZACz501xT",
"url": "https://t.co/TZACz501xT",
"media_url_https": "https://pbs.twimg.com/media/CaUGU1-WIAA6RYB.jpg",
"id_str": "694968672654336000",
"sizes": {
"large": {
"h": 507,
"resize": "fit",
"w": 507
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 507,
"resize": "fit",
"w": 507
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
57,
80
],
"type": "photo",
"id": 694968672654336000,
"media_url": "http://pbs.twimg.com/media/CaUGU1-WIAA6RYB.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694968674126581760",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": true,
"id": 2416862010,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 33,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2416862010",
"profile_background_color": "C0DEED",
"listed_count": 32,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 3514,
"description": "",
"friends_count": 28,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "zyhiludihawi",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 2954,
"name": "Gweneal Gatheridge",
"notifications": false,
"url": null,
"created_at": "Sat Mar 29 03:34:09 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 19:40:18 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @NigUnitNation: Do you realize we're only 8 days away from the 1st day of the rest of our lives? #WAVES #OR #SOHELPMEGOD #ALBUMOFTHELIFE\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694968504605396992,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 26172790,
"indices": [
3,
17
],
"id_str": "26172790",
"screen_name": "NigUnitNation",
"name": "TheRecklessHedonist"
}
],
"hashtags": [
{
"indices": [
100,
106
],
"text": "WAVES"
},
{
"indices": [
107,
110
],
"text": "OR"
},
{
"indices": [
111,
123
],
"text": "SOHELPMEGOD"
},
{
"indices": [
124,
139
],
"text": "ALBUMOFTHELIFE"
},
{
"indices": [
139,
140
],
"text": "Kanye"
},
{
"indices": [
139,
140
],
"text": "February11"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "694968504605396992",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Do you realize we're only 8 days away from the 1st day of the rest of our lives? #WAVES #OR #SOHELPMEGOD #ALBUMOFTHELIFE #Kanye #February11",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694964367339741185,
"favorite_count": 1,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
81,
87
],
"text": "WAVES"
},
{
"indices": [
88,
91
],
"text": "OR"
},
{
"indices": [
92,
104
],
"text": "SOHELPMEGOD"
},
{
"indices": [
105,
120
],
"text": "ALBUMOFTHELIFE"
},
{
"indices": [
121,
127
],
"text": "Kanye"
},
{
"indices": [
128,
139
],
"text": "February11"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "694964367339741185",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 26172790,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/6565953/finalback.jpg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/568218208415404033/JVuucGD8_normal.jpeg",
"profile_sidebar_fill_color": "DDFFCC",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/lsP0FIlBEc",
"indices": [
0,
22
],
"expanded_url": "http://TheRecklessHedonist.Blogspot.com",
"display_url": "TheRecklessHedonist.Blogspot.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 540,
"profile_sidebar_border_color": "BDDCAD",
"id_str": "26172790",
"profile_background_color": "9AE4E8",
"listed_count": 12,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 10391,
"description": "You can never have enough good music, only a lack of time to play it all; A reckless hedonist and the devil perched on your shoulder. Overall nice guy.",
"friends_count": 1712,
"location": "New York, New York",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/568218208415404033/JVuucGD8_normal.jpeg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/26172790/1424308793",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/6565953/finalback.jpg",
"screen_name": "NigUnitNation",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 6,
"name": "TheRecklessHedonist",
"notifications": false,
"url": "http://t.co/lsP0FIlBEc",
"created_at": "Tue Mar 24 03:55:27 +0000 2009",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 19:23:11 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 4851909525,
"profile_background_image_url_https": null,
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/692311563445891073/68u5aJfT_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 232,
"profile_sidebar_border_color": "C0DEED",
"id_str": "4851909525",
"profile_background_color": "F5F8FA",
"listed_count": 12,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 4181,
"description": "BRO!",
"friends_count": 1890,
"location": "",
"profile_link_color": "2B7BB9",
"profile_image_url": "http://pbs.twimg.com/profile_images/692311563445891073/68u5aJfT_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": null,
"screen_name": "YZYWAVES",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 3059,
"name": "#YZYWAVES",
"notifications": false,
"url": null,
"created_at": "Wed Jan 27 02:15:24 +0000 2016",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 19:39:38 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\n#repost from@rayrod747 #kanye #kimk #amberrose\u2026 https://t.co/vB7HEMrzfY",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694968302800650240,
"favorite_count": 0,
"source": "<a href=\"http://instagram.com\" rel=\"nofollow\">Instagram</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
43,
50
],
"text": "repost"
},
{
"indices": [
66,
72
],
"text": "kanye"
},
{
"indices": [
73,
78
],
"text": "kimk"
},
{
"indices": [
79,
89
],
"text": "amberrose"
}
],
"urls": [
{
"url": "https://t.co/vB7HEMrzfY",
"indices": [
91,
114
],
"expanded_url": "https://www.instagram.com/p/BBVg2zthRxf/",
"display_url": "instagram.com/p/BBVg2zthRxf/"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694968302800650240",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 60685788,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/734380806/3ef9878ecf7b2ed4ebdd6c79402d0f71.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/627005540766478336/EOKbstV7_normal.jpg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 575,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "60685788",
"profile_background_color": "131516",
"listed_count": 7,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 7663,
"description": "I LIKE TO CHA CHA",
"friends_count": 1462,
"location": "Indianapolis, IN",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/627005540766478336/EOKbstV7_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/734380806/3ef9878ecf7b2ed4ebdd6c79402d0f71.jpeg",
"screen_name": "TRIPPBAELESS",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 7,
"name": "JUICHON SANCHEZ",
"notifications": false,
"url": null,
"created_at": "Mon Jul 27 19:27:58 +0000 2009",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 19:38:49 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#joshduhamel #jayz #jcole #kanye\nhttps://t.co/nMc4Mvf4VY https://t.co/gWw8yacIh3",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694968093148372992,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
12
],
"text": "joshduhamel"
},
{
"indices": [
13,
18
],
"text": "jayz"
},
{
"indices": [
19,
25
],
"text": "jcole"
},
{
"indices": [
26,
32
],
"text": "kanye"
}
],
"urls": [
{
"url": "https://t.co/nMc4Mvf4VY",
"indices": [
33,
56
],
"expanded_url": "http://www.MyCrazyLifeStory.com/2016Tattoos48",
"display_url": "MyCrazyLifeStory.com/2016Tattoos48"
}
],
"media": [
{
"expanded_url": "http://twitter.com/EuniceEtier/status/694968093148372992/photo/1",
"display_url": "pic.twitter.com/gWw8yacIh3",
"url": "https://t.co/gWw8yacIh3",
"media_url_https": "https://pbs.twimg.com/media/CaUFzCbWAAEGCGz.jpg",
"id_str": "694968091881635841",
"sizes": {
"large": {
"h": 507,
"resize": "fit",
"w": 507
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 507,
"resize": "fit",
"w": 507
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
57,
80
],
"type": "photo",
"id": 694968091881635841,
"media_url": "http://pbs.twimg.com/media/CaUFzCbWAAEGCGz.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694968093148372992",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2813656843,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/514970728752353280/C3cagXg7.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/514970719550050304/GHTI4RlH_normal.jpeg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 120,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "2813656843",
"profile_background_color": "0000FF",
"listed_count": 38,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 6973,
"description": "",
"friends_count": 40,
"location": "",
"profile_link_color": "0000FF",
"profile_image_url": "http://pbs.twimg.com/profile_images/514970719550050304/GHTI4RlH_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/514970728752353280/C3cagXg7.jpeg",
"screen_name": "EuniceEtier",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 3339,
"name": "Eunice Etier",
"notifications": false,
"url": null,
"created_at": "Tue Sep 16 19:53:41 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 19:37:59 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @ckgthedon: #GoodMorning #TeamCKG @ckgthedon https://t.co/NDAgHRcNR5 #CKG #Reverbnation #IowaCaucus #GroundhogDay #Kobe #Beyonce #Drake \u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694967733465673728,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 21112127,
"indices": [
3,
13
],
"id_str": "21112127",
"screen_name": "ckgthedon",
"name": "CKGTHEDON"
},
{
"id": 21112127,
"indices": [
37,
47
],
"id_str": "21112127",
"screen_name": "ckgthedon",
"name": "CKGTHEDON"
}
],
"hashtags": [
{
"indices": [
15,
27
],
"text": "GoodMorning"
},
{
"indices": [
28,
36
],
"text": "TeamCKG"
},
{
"indices": [
72,
76
],
"text": "CKG"
},
{
"indices": [
77,
90
],
"text": "Reverbnation"
},
{
"indices": [
91,
102
],
"text": "IowaCaucus"
},
{
"indices": [
103,
116
],
"text": "GroundhogDay"
},
{
"indices": [
117,
122
],
"text": "Kobe"
},
{
"indices": [
123,
131
],
"text": "Beyonce"
},
{
"indices": [
132,
138
],
"text": "Drake"
},
{
"indices": [
139,
140
],
"text": "Kanye"
},
{
"indices": [
139,
140
],
"text": "Chicago"
}
],
"urls": [
{
"url": "https://t.co/NDAgHRcNR5",
"indices": [
48,
71
],
"expanded_url": "https://www.reverbnation.com/ckg",
"display_url": "reverbnation.com/ckg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694967733465673728",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "#GoodMorning #TeamCKG @ckgthedon https://t.co/NDAgHRcNR5 #CKG #Reverbnation #IowaCaucus #GroundhogDay #Kobe #Beyonce #Drake #Kanye #Chicago",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694882738420056064,
"favorite_count": 2,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 21112127,
"indices": [
22,
32
],
"id_str": "21112127",
"screen_name": "ckgthedon",
"name": "CKGTHEDON"
}
],
"hashtags": [
{
"indices": [
0,
12
],
"text": "GoodMorning"
},
{
"indices": [
13,
21
],
"text": "TeamCKG"
},
{
"indices": [
57,
61
],
"text": "CKG"
},
{
"indices": [
62,
75
],
"text": "Reverbnation"
},
{
"indices": [
76,
87
],
"text": "IowaCaucus"
},
{
"indices": [
88,
101
],
"text": "GroundhogDay"
},
{
"indices": [
102,
107
],
"text": "Kobe"
},
{
"indices": [
108,
116
],
"text": "Beyonce"
},
{
"indices": [
117,
123
],
"text": "Drake"
},
{
"indices": [
124,
130
],
"text": "Kanye"
},
{
"indices": [
131,
139
],
"text": "Chicago"
}
],
"urls": [
{
"url": "https://t.co/NDAgHRcNR5",
"indices": [
33,
56
],
"expanded_url": "https://www.reverbnation.com/ckg",
"display_url": "reverbnation.com/ckg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694882738420056064",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 21112127,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/447221144232275969/4GG8b52h.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/691797655836565508/6QrKtu_s_normal.jpg",
"profile_sidebar_fill_color": "DDFFCC",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/wZcYRhR9Hy",
"indices": [
0,
22
],
"expanded_url": "http://www.ckgonline.net/fr_ckgintro.cfm",
"display_url": "ckgonline.net/fr_ckgintro.cfm"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 11080,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "21112127",
"profile_background_color": "9AE4E8",
"listed_count": 109,
"is_translation_enabled": false,
"utc_offset": -25200,
"statuses_count": 96362,
"description": "LA Music Award Winner,#TeamGemini,NBC Chicago Fire,FOX's Empire, ABC Mind Games/SOHH.COM True Grit Winner ,Remy Martin Ringleader; Ckgthereplacement@gmail.com",
"friends_count": 3125,
"location": "West Coast/Chi-Town 4 Life Tho",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/691797655836565508/6QrKtu_s_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/21112127/1395460747",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/447221144232275969/4GG8b52h.jpeg",
"screen_name": "ckgthedon",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 2963,
"name": "CKGTHEDON",
"notifications": false,
"url": "http://t.co/wZcYRhR9Hy",
"created_at": "Tue Feb 17 18:04:49 +0000 2009",
"contributors_enabled": false,
"time_zone": "Mountain Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 13:58:49 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 126289848,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/193829546/CKG_Promo_Twit_pic.jpg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/544701269852422144/NP5_-AcD_normal.jpeg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/hllmnr4p",
"indices": [
0,
20
],
"expanded_url": "http://www.ckgonline.net",
"display_url": "ckgonline.net"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 351,
"profile_sidebar_border_color": "C0DEED",
"id_str": "126289848",
"profile_background_color": "C0DEED",
"listed_count": 38,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 9606,
"description": "Twitter fan page for the latest info on CKG, chicago LA Music Award winning producer, artist, writer, arranger, etc. For booking ckgthereplacement@gmail.com",
"friends_count": 999,
"location": "worldwide!",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/544701269852422144/NP5_-AcD_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/193829546/CKG_Promo_Twit_pic.jpg",
"screen_name": "ckgfans",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 3192,
"name": "CKG Fan club",
"notifications": false,
"url": "http://t.co/hllmnr4p",
"created_at": "Thu Mar 25 11:17:40 +0000 2010",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 19:36:34 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#WizKhalifa #Kanye https://t.co/WIjuR4aEi7 https://t.co/2Pt1BbPDOk",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694967488291934208,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
11
],
"text": "WizKhalifa"
},
{
"indices": [
12,
18
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/WIjuR4aEi7",
"indices": [
19,
42
],
"expanded_url": "http://m.tmz.com/",
"display_url": "m.tmz.com"
}
],
"media": [
{
"expanded_url": "http://twitter.com/Karimahn/status/694967488291934208/photo/1",
"display_url": "pic.twitter.com/2Pt1BbPDOk",
"url": "https://t.co/2Pt1BbPDOk",
"media_url_https": "https://pbs.twimg.com/media/CaUFPV7WcAE6U-H.jpg",
"id_str": "694967478640865281",
"sizes": {
"small": {
"h": 392,
"resize": "fit",
"w": 340
},
"large": {
"h": 766,
"resize": "fit",
"w": 664
},
"medium": {
"h": 692,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
43,
66
],
"type": "photo",
"id": 694967478640865281,
"media_url": "http://pbs.twimg.com/media/CaUFPV7WcAE6U-H.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694967488291934208",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 615546811,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/688255687323828225/dscqm25J_normal.jpg",
"profile_sidebar_fill_color": "EADEAA",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 139,
"profile_sidebar_border_color": "D9B17E",
"id_str": "615546811",
"profile_background_color": "8B542B",
"listed_count": 43,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 24296,
"description": "Sometimes you have to play the fool in order to fool the fool who thinks he's foolin you.....",
"friends_count": 129,
"location": "",
"profile_link_color": "9D582E",
"profile_image_url": "http://pbs.twimg.com/profile_images/688255687323828225/dscqm25J_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/615546811/1373647498",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif",
"screen_name": "Karimahn",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 349,
"name": "WhyTheCagedBirdSings",
"notifications": false,
"url": null,
"created_at": "Fri Jun 22 21:28:30 +0000 2012",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 19:35:35 +0000 2016",
"in_reply_to_status_id_str": null,
"place": {
"country_code": "US",
"url": "https://api.twitter.com/1.1/geo/id/94965b2c45386f87.json",
"country": "United States",
"place_type": "admin",
"bounding_box": {
"type": "Polygon",
"coordinates": [
[
[
-79.76259,
40.477383
],
[
-71.777492,
40.477383
],
[
-71.777492,
45.015851
],
[
-79.76259,
45.015851
]
]
]
},
"contained_within": [],
"full_name": "New York, USA",
"attributes": {},
"id": "94965b2c45386f87",
"name": "New York"
},
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#joshduhamel #jayz #jcole #kanye\nhttps://t.co/DRjzaUUdab https://t.co/ME96U4FDpe",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694966982823825410,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
12
],
"text": "joshduhamel"
},
{
"indices": [
13,
18
],
"text": "jayz"
},
{
"indices": [
19,
25
],
"text": "jcole"
},
{
"indices": [
26,
32
],
"text": "kanye"
}
],
"urls": [
{
"url": "https://t.co/DRjzaUUdab",
"indices": [
33,
56
],
"expanded_url": "http://www.MyCrazyLifeStory.com/2016Tattoos48?sbV",
"display_url": "MyCrazyLifeStory.com/2016Tattoos48?\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/lunapakekef/status/694966982823825410/photo/1",
"display_url": "pic.twitter.com/ME96U4FDpe",
"url": "https://t.co/ME96U4FDpe",
"media_url_https": "https://pbs.twimg.com/media/CaUEyZJW0AAnZJV.jpg",
"id_str": "694966981288710144",
"sizes": {
"large": {
"h": 507,
"resize": "fit",
"w": 507
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 507,
"resize": "fit",
"w": 507
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
57,
80
],
"type": "photo",
"id": 694966981288710144,
"media_url": "http://pbs.twimg.com/media/CaUEyZJW0AAnZJV.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694966982823825410",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": true,
"id": 2416860818,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 48,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2416860818",
"profile_background_color": "C0DEED",
"listed_count": 26,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 3383,
"description": "",
"friends_count": 36,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "lunapakekef",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 2986,
"name": "Achyan Benoix",
"notifications": false,
"url": null,
"created_at": "Sat Mar 29 03:30:40 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 19:33:35 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @TheRapperGuide: #drake #jcole #coleworld #kanyewest #kanye #yeezy #yeezys\n\nhttps://t.co/iDwMuepIR1 https://t.co/LmmqtBxDdT",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694966714241564676,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 3766513995,
"indices": [
3,
18
],
"id_str": "3766513995",
"screen_name": "TheRapperGuide",
"name": "SmartRapper(dot)com"
}
],
"hashtags": [
{
"indices": [
20,
26
],
"text": "drake"
},
{
"indices": [
27,
33
],
"text": "jcole"
},
{
"indices": [
34,
44
],
"text": "coleworld"
},
{
"indices": [
45,
55
],
"text": "kanyewest"
},
{
"indices": [
56,
62
],
"text": "kanye"
},
{
"indices": [
63,
69
],
"text": "yeezy"
},
{
"indices": [
70,
77
],
"text": "yeezys"
}
],
"urls": [
{
"url": "https://t.co/iDwMuepIR1",
"indices": [
79,
102
],
"expanded_url": "http://www.SmartRapper.com/level5part2/?yoz5",
"display_url": "SmartRapper.com/level5part2/?y\u2026"
}
],
"media": [
{
"source_user_id": 3766513995,
"source_status_id_str": "694680444508442624",
"expanded_url": "http://twitter.com/TheRapperGuide/status/694680444508442624/photo/1",
"display_url": "pic.twitter.com/LmmqtBxDdT",
"url": "https://t.co/LmmqtBxDdT",
"media_url_https": "https://pbs.twimg.com/media/CaQALrTUYAAbToh.jpg",
"source_user_id_str": "3766513995",
"source_status_id": 694680444508442624,
"id_str": "694680443124211712",
"sizes": {
"large": {
"h": 507,
"resize": "fit",
"w": 507
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 507,
"resize": "fit",
"w": 507
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
103,
126
],
"type": "photo",
"id": 694680443124211712,
"media_url": "http://pbs.twimg.com/media/CaQALrTUYAAbToh.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "694966714241564676",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "#drake #jcole #coleworld #kanyewest #kanye #yeezy #yeezys\n\nhttps://t.co/iDwMuepIR1 https://t.co/LmmqtBxDdT",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694680444508442624,
"favorite_count": 1,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "drake"
},
{
"indices": [
7,
13
],
"text": "jcole"
},
{
"indices": [
14,
24
],
"text": "coleworld"
},
{
"indices": [
25,
35
],
"text": "kanyewest"
},
{
"indices": [
36,
42
],
"text": "kanye"
},
{
"indices": [
43,
49
],
"text": "yeezy"
},
{
"indices": [
50,
57
],
"text": "yeezys"
}
],
"urls": [
{
"url": "https://t.co/iDwMuepIR1",
"indices": [
59,
82
],
"expanded_url": "http://www.SmartRapper.com/level5part2/?yoz5",
"display_url": "SmartRapper.com/level5part2/?y\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/TheRapperGuide/status/694680444508442624/photo/1",
"display_url": "pic.twitter.com/LmmqtBxDdT",
"url": "https://t.co/LmmqtBxDdT",
"media_url_https": "https://pbs.twimg.com/media/CaQALrTUYAAbToh.jpg",
"id_str": "694680443124211712",
"sizes": {
"large": {
"h": 507,
"resize": "fit",
"w": 507
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 507,
"resize": "fit",
"w": 507
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
83,
106
],
"type": "photo",
"id": 694680443124211712,
"media_url": "http://pbs.twimg.com/media/CaQALrTUYAAbToh.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "694680444508442624",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3766513995,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/649719416553213956/Z8249YcF.jpg",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/667575474319523842/Vq3rWjkB_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/PluhlNfLFB",
"indices": [
0,
23
],
"expanded_url": "http://SmartRapper.com",
"display_url": "SmartRapper.com"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/PluhlNfLFB",
"indices": [
20,
43
],
"expanded_url": "http://SmartRapper.com",
"display_url": "SmartRapper.com"
}
]
}
},
"followers_count": 10741,
"profile_sidebar_border_color": "000000",
"id_str": "3766513995",
"profile_background_color": "FA743E",
"listed_count": 46,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 3340,
"description": "Unlike other sites, https://t.co/PluhlNfLFB was created by a self made artist just like you | With 14,000,000+ YouTube views and major artist writing credits",
"friends_count": 2366,
"location": "Los Angeles, CA",
"profile_link_color": "000000",
"profile_image_url": "http://pbs.twimg.com/profile_images/667575474319523842/Vq3rWjkB_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3766513995/1444269518",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/649719416553213956/Z8249YcF.jpg",
"screen_name": "TheRapperGuide",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 5897,
"name": "SmartRapper(dot)com",
"notifications": false,
"url": "https://t.co/PluhlNfLFB",
"created_at": "Fri Sep 25 02:45:24 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 00:34:59 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": true,
"id": 2416860308,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 38,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2416860308",
"profile_background_color": "C0DEED",
"listed_count": 29,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 3402,
"description": "",
"friends_count": 28,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "vucefuhixaga",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 3046,
"name": "Candice Bywaters",
"notifications": false,
"url": null,
"created_at": "Sat Mar 29 03:30:09 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 19:32:31 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "@applemusic beats1.radio @zanelowe yeezyboostoffical #APPLEMUSIC #BEATS1 #ZANELOWE #KANYE\u2026 https://t.co/CTUvK43aic",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694966480799145984,
"favorite_count": 2,
"source": "<a href=\"http://instagram.com\" rel=\"nofollow\">Instagram</a>",
"retweeted": false,
"coordinates": {
"type": "Point",
"coordinates": [
-118.243,
34.0522
]
},
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 74580436,
"indices": [
0,
11
],
"id_str": "74580436",
"screen_name": "AppleMusic",
"name": "Apple Music"
},
{
"id": 21288052,
"indices": [
25,
34
],
"id_str": "21288052",
"screen_name": "zanelowe",
"name": "Zane Lowe"
}
],
"hashtags": [
{
"indices": [
53,
64
],
"text": "APPLEMUSIC"
},
{
"indices": [
65,
72
],
"text": "BEATS1"
},
{
"indices": [
73,
82
],
"text": "ZANELOWE"
},
{
"indices": [
83,
89
],
"text": "KANYE"
}
],
"urls": [
{
"url": "https://t.co/CTUvK43aic",
"indices": [
91,
114
],
"expanded_url": "https://www.instagram.com/p/BBVgBuXNE9q/",
"display_url": "instagram.com/p/BBVgBuXNE9q/"
}
]
},
"in_reply_to_screen_name": "AppleMusic",
"in_reply_to_user_id": 74580436,
"retweet_count": 0,
"id_str": "694966480799145984",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2853891420,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/633244855259410434/u2w18yTk_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 240,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2853891420",
"profile_background_color": "C0DEED",
"listed_count": 30,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 4969,
"description": "",
"friends_count": 803,
"location": "Silicon Beach, CA",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/633244855259410434/u2w18yTk_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2853891420/1413246114",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "ErleeEnt",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 192,
"name": "Leone Clarke",
"notifications": false,
"url": null,
"created_at": "Mon Oct 13 05:21:22 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": {
"type": "Point",
"coordinates": [
34.0522,
-118.243
]
},
"in_reply_to_user_id_str": "74580436",
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 19:31:35 +0000 2016",
"in_reply_to_status_id_str": null,
"place": {
"country_code": "US",
"url": "https://api.twitter.com/1.1/geo/id/3b77caf94bfc81fe.json",
"country": "United States",
"place_type": "city",
"bounding_box": {
"type": "Polygon",
"coordinates": [
[
[
-118.668404,
33.704538
],
[
-118.155409,
33.704538
],
[
-118.155409,
34.337041
],
[
-118.668404,
34.337041
]
]
]
},
"contained_within": [],
"full_name": "Los Angeles, CA",
"attributes": {},
"id": "3b77caf94bfc81fe",
"name": "Los Angeles"
},
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Told ya this whole #Kanye, #amberrose & #WizKhalifa thing was #publicity\nhttps://t.co/a50CUvX2dc",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694966072500424704,
"favorite_count": 0,
"source": "<a href=\"http://linkis.com\" rel=\"nofollow\">Linkis.com</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
19,
25
],
"text": "Kanye"
},
{
"indices": [
27,
37
],
"text": "amberrose"
},
{
"indices": [
44,
55
],
"text": "WizKhalifa"
},
{
"indices": [
66,
76
],
"text": "publicity"
}
],
"urls": [
{
"url": "https://t.co/a50CUvX2dc",
"indices": [
77,
100
],
"expanded_url": "http://ln.is/www.youtube.com/mM8L3",
"display_url": "ln.is/www.youtube.co\u2026"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694966072500424704",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 34359591,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif",
"verified": false,
"profile_text_color": "DC3509",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/667342439292600320/krnkkLQ7_normal.jpg",
"profile_sidebar_fill_color": "99CC33",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/rTQAzXVnyg",
"indices": [
0,
23
],
"expanded_url": "https://www.facebook.com/genevasclosett",
"display_url": "facebook.com/genevasclosett"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 977,
"profile_sidebar_border_color": "578717",
"id_str": "34359591",
"profile_background_color": "352726",
"listed_count": 172,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 8402,
"description": "Seen On #TMZ Live | Winner of BEST UNDER 40 AWARD| Featured In #Chicago's Business Journal| #MarketingExpert| GROW YOUR #BUSINESS w/ MINIMAL INVESTMENT",
"friends_count": 872,
"location": "United States",
"profile_link_color": "5E2BD0",
"profile_image_url": "http://pbs.twimg.com/profile_images/667342439292600320/krnkkLQ7_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/34359591/1445482211",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif",
"screen_name": "GenevaLifeStyle",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 1857,
"name": "Geneva's Closett",
"notifications": false,
"url": "https://t.co/rTQAzXVnyg",
"created_at": "Wed Apr 22 18:52:33 +0000 2009",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 19:29:58 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @EpicClips: Y'all going to put #Kanye in depression #AmbersNastyFinger\ud83d\udc46\ud83c\udffc#epicclips https://t.co/Gbn0DgmtPe",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694965177876238336,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 1640500489,
"indices": [
3,
13
],
"id_str": "1640500489",
"screen_name": "EpicClips",
"name": "EPIC CLIPS \u00ae"
}
],
"hashtags": [
{
"indices": [
34,
40
],
"text": "Kanye"
},
{
"indices": [
56,
74
],
"text": "AmbersNastyFinger"
},
{
"indices": [
76,
86
],
"text": "epicclips"
}
],
"urls": [],
"media": [
{
"source_user_id": 1640500489,
"source_status_id_str": "693217132356751360",
"expanded_url": "http://twitter.com/EpicClips/status/693217132356751360/video/1",
"display_url": "pic.twitter.com/Gbn0DgmtPe",
"url": "https://t.co/Gbn0DgmtPe",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693216993516900353/pu/img/yDPKs54nGs2NByua.jpg",
"source_user_id_str": "1640500489",
"source_status_id": 693217132356751360,
"id_str": "693216993516900353",
"sizes": {
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"large": {
"h": 640,
"resize": "fit",
"w": 640
},
"medium": {
"h": 600,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
87,
110
],
"type": "photo",
"id": 693216993516900353,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693216993516900353/pu/img/yDPKs54nGs2NByua.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 516,
"id_str": "694965177876238336",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Y'all going to put #Kanye in depression #AmbersNastyFinger\ud83d\udc46\ud83c\udffc#epicclips https://t.co/Gbn0DgmtPe",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 693217132356751360,
"favorite_count": 481,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
19,
25
],
"text": "Kanye"
},
{
"indices": [
41,
59
],
"text": "AmbersNastyFinger"
},
{
"indices": [
61,
71
],
"text": "epicclips"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/EpicClips/status/693217132356751360/video/1",
"display_url": "pic.twitter.com/Gbn0DgmtPe",
"url": "https://t.co/Gbn0DgmtPe",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/693216993516900353/pu/img/yDPKs54nGs2NByua.jpg",
"id_str": "693216993516900353",
"sizes": {
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"large": {
"h": 640,
"resize": "fit",
"w": 640
},
"medium": {
"h": 600,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
72,
95
],
"type": "photo",
"id": 693216993516900353,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/693216993516900353/pu/img/yDPKs54nGs2NByua.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 516,
"id_str": "693217132356751360",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 1640500489,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/693543219980865536/-v0mPqDQ_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/x3jPhhOaOj",
"indices": [
0,
23
],
"expanded_url": "http://www.epicclipstv.com",
"display_url": "epicclipstv.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 44235,
"profile_sidebar_border_color": "C0DEED",
"id_str": "1640500489",
"profile_background_color": "C0DEED",
"listed_count": 35,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 3402,
"description": "Welcome To #EpicClips We Bring You The Best Videos From Around The World. We Do Not Own Any Content Posted | DM For Promos #Vine - 5million+ Loops.",
"friends_count": 10199,
"location": "Worldwide",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/693543219980865536/-v0mPqDQ_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1640500489/1454188599",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "EpicClips",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 6153,
"name": "EPIC CLIPS \u00ae",
"notifications": false,
"url": "https://t.co/x3jPhhOaOj",
"created_at": "Fri Aug 02 13:32:48 +0000 2013",
"contributors_enabled": false,
"time_zone": "London",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": true,
"lang": "en",
"created_at": "Fri Jan 29 23:40:18 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2737740316,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/689269992559255552/YC_QGIY3_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/KSLCUaIKsB",
"indices": [
0,
23
],
"expanded_url": "http://trapsoul.com",
"display_url": "trapsoul.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 874,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2737740316",
"profile_background_color": "C0DEED",
"listed_count": 3,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 31365,
"description": "missing my hearts !",
"friends_count": 838,
"location": "sitting next to yo man ",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/689269992559255552/YC_QGIY3_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2737740316/1453510287",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "shaeesauxe15",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 757,
"name": "spoiledmf!!",
"notifications": false,
"url": "https://t.co/KSLCUaIKsB",
"created_at": "Sat Aug 09 01:02:21 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 19:26:24 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#finally we have #peace https://t.co/Nw7Awm0pif #SiriusXM #TheHeat #ch46 #Kanye #wizkhalifa #letstalk #itsallgood",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694964879107702785,
"favorite_count": 0,
"source": "<a href=\"http://www.hootsuite.com\" rel=\"nofollow\">Hootsuite</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
8
],
"text": "finally"
},
{
"indices": [
17,
23
],
"text": "peace"
},
{
"indices": [
49,
58
],
"text": "SiriusXM"
},
{
"indices": [
59,
67
],
"text": "TheHeat"
},
{
"indices": [
68,
73
],
"text": "ch46"
},
{
"indices": [
74,
80
],
"text": "Kanye"
},
{
"indices": [
81,
92
],
"text": "wizkhalifa"
},
{
"indices": [
93,
102
],
"text": "letstalk"
},
{
"indices": [
103,
114
],
"text": "itsallgood"
}
],
"urls": [
{
"url": "https://t.co/Nw7Awm0pif",
"indices": [
25,
48
],
"expanded_url": "http://m.etonline.com/news/181502_wiz_khalifa_accepts_kanye_west_apology_says_he_the_bob_marley_of_the_feud/?utm_source=twitterfeed&utm_medium=twitter&utm_campaign=Feed%3A+ETTopStories+%28Entertainment+Tonight%3A+Breaking+News%29",
"display_url": "m.etonline.com/news/181502_wi\u2026"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694964879107702785",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 31156802,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/689639716178755584/Rxuu304K_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 2286,
"profile_sidebar_border_color": "C0DEED",
"id_str": "31156802",
"profile_background_color": "C0DEED",
"listed_count": 25,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 1122,
"description": "Multi-Media Personality | SiriusXM Exec. |The Heat Ch. 46, 12pm-6pm| Radio Dude| Reality Show| Screenwriter | Renaissance Man |Mama's Boy | BOSSBUSINESS| Humble",
"friends_count": 2709,
"location": "Everywhere your radio is.",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/689639716178755584/Rxuu304K_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/31156802/1453215337",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "diondeezy",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 432,
"name": "DION",
"notifications": false,
"url": null,
"created_at": "Tue Apr 14 16:14:58 +0000 2009",
"contributors_enabled": false,
"time_zone": "Quito",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 19:25:13 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Horses are more similar to donkeys than horseplay is to assplay.\n\n#Kanye\n#KanyeWest\n#AmberRose",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694964817480691712,
"favorite_count": 2,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
66,
72
],
"text": "Kanye"
},
{
"indices": [
73,
83
],
"text": "KanyeWest"
},
{
"indices": [
84,
94
],
"text": "AmberRose"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "694964817480691712",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 25521823,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000514057537/b2c42c5f302ca8bf0df914323319d172_normal.jpeg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/twMLSrNDQq",
"indices": [
0,
22
],
"expanded_url": "http://www.facebook.com/TPOffender",
"display_url": "facebook.com/TPOffender"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 35117,
"profile_sidebar_border_color": "C0DEED",
"id_str": "25521823",
"profile_background_color": "C0DEED",
"listed_count": 492,
"is_translation_enabled": false,
"utc_offset": -14400,
"statuses_count": 2265,
"description": "Writing comedy scripts. Or wasting time writing jokes on Twitter. Someone should probably hire me so I waste less time. Watch web series The Public Offender.",
"friends_count": 34766,
"location": "LA",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/378800000514057537/b2c42c5f302ca8bf0df914323319d172_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "AlecMoore",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 898,
"name": "Alec Moore",
"notifications": false,
"url": "http://t.co/twMLSrNDQq",
"created_at": "Fri Mar 20 15:34:48 +0000 2009",
"contributors_enabled": false,
"time_zone": "Atlantic Time (Canada)",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 19:24:58 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Do you realize we're only 8 days away from the 1st day of the rest of our lives? #WAVES #OR #SOHELPMEGOD #ALBUMOFTHELIFE #Kanye #February11",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694964367339741185,
"favorite_count": 1,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
81,
87
],
"text": "WAVES"
},
{
"indices": [
88,
91
],
"text": "OR"
},
{
"indices": [
92,
104
],
"text": "SOHELPMEGOD"
},
{
"indices": [
105,
120
],
"text": "ALBUMOFTHELIFE"
},
{
"indices": [
121,
127
],
"text": "Kanye"
},
{
"indices": [
128,
139
],
"text": "February11"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "694964367339741185",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 26172790,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/6565953/finalback.jpg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/568218208415404033/JVuucGD8_normal.jpeg",
"profile_sidebar_fill_color": "DDFFCC",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/lsP0FIlBEc",
"indices": [
0,
22
],
"expanded_url": "http://TheRecklessHedonist.Blogspot.com",
"display_url": "TheRecklessHedonist.Blogspot.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 540,
"profile_sidebar_border_color": "BDDCAD",
"id_str": "26172790",
"profile_background_color": "9AE4E8",
"listed_count": 12,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 10391,
"description": "You can never have enough good music, only a lack of time to play it all; A reckless hedonist and the devil perched on your shoulder. Overall nice guy.",
"friends_count": 1712,
"location": "New York, New York",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/568218208415404033/JVuucGD8_normal.jpeg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/26172790/1424308793",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/6565953/finalback.jpg",
"screen_name": "NigUnitNation",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 6,
"name": "TheRecklessHedonist",
"notifications": false,
"url": "http://t.co/lsP0FIlBEc",
"created_at": "Tue Mar 24 03:55:27 +0000 2009",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 19:23:11 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @TheRapperGuide: #drake #jcole #coleworld #kanyewest #kanye\n\nhttps://t.co/KHhMCF5dk4 https://t.co/hedaAI8YNM",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694963309628493824,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 3766513995,
"indices": [
3,
18
],
"id_str": "3766513995",
"screen_name": "TheRapperGuide",
"name": "SmartRapper(dot)com"
}
],
"hashtags": [
{
"indices": [
20,
26
],
"text": "drake"
},
{
"indices": [
27,
33
],
"text": "jcole"
},
{
"indices": [
34,
44
],
"text": "coleworld"
},
{
"indices": [
45,
55
],
"text": "kanyewest"
},
{
"indices": [
56,
62
],
"text": "kanye"
}
],
"urls": [
{
"url": "https://t.co/KHhMCF5dk4",
"indices": [
64,
87
],
"expanded_url": "http://www.SmartRapper.com/best-free-recording-software-for-rappers/?G0F",
"display_url": "SmartRapper.com/best-free-reco\u2026"
}
],
"media": [
{
"source_user_id": 3766513995,
"source_status_id_str": "693962237590048768",
"expanded_url": "http://twitter.com/TheRapperGuide/status/693962237590048768/photo/1",
"display_url": "pic.twitter.com/hedaAI8YNM",
"url": "https://t.co/hedaAI8YNM",
"media_url_https": "https://pbs.twimg.com/media/CaFy-geUEAEu8lj.jpg",
"source_user_id_str": "3766513995",
"source_status_id": 693962237590048768,
"id_str": "693962235786301441",
"sizes": {
"large": {
"h": 507,
"resize": "fit",
"w": 507
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 507,
"resize": "fit",
"w": 507
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
88,
111
],
"type": "photo",
"id": 693962235786301441,
"media_url": "http://pbs.twimg.com/media/CaFy-geUEAEu8lj.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694963309628493824",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "#drake #jcole #coleworld #kanyewest #kanye\n\nhttps://t.co/KHhMCF5dk4 https://t.co/hedaAI8YNM",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 693962237590048768,
"favorite_count": 5,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "drake"
},
{
"indices": [
7,
13
],
"text": "jcole"
},
{
"indices": [
14,
24
],
"text": "coleworld"
},
{
"indices": [
25,
35
],
"text": "kanyewest"
},
{
"indices": [
36,
42
],
"text": "kanye"
}
],
"urls": [
{
"url": "https://t.co/KHhMCF5dk4",
"indices": [
44,
67
],
"expanded_url": "http://www.SmartRapper.com/best-free-recording-software-for-rappers/?G0F",
"display_url": "SmartRapper.com/best-free-reco\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/TheRapperGuide/status/693962237590048768/photo/1",
"display_url": "pic.twitter.com/hedaAI8YNM",
"url": "https://t.co/hedaAI8YNM",
"media_url_https": "https://pbs.twimg.com/media/CaFy-geUEAEu8lj.jpg",
"id_str": "693962235786301441",
"sizes": {
"large": {
"h": 507,
"resize": "fit",
"w": 507
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 507,
"resize": "fit",
"w": 507
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
68,
91
],
"type": "photo",
"id": 693962235786301441,
"media_url": "http://pbs.twimg.com/media/CaFy-geUEAEu8lj.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "693962237590048768",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3766513995,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/649719416553213956/Z8249YcF.jpg",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/667575474319523842/Vq3rWjkB_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/PluhlNfLFB",
"indices": [
0,
23
],
"expanded_url": "http://SmartRapper.com",
"display_url": "SmartRapper.com"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/PluhlNfLFB",
"indices": [
20,
43
],
"expanded_url": "http://SmartRapper.com",
"display_url": "SmartRapper.com"
}
]
}
},
"followers_count": 10741,
"profile_sidebar_border_color": "000000",
"id_str": "3766513995",
"profile_background_color": "FA743E",
"listed_count": 46,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 3340,
"description": "Unlike other sites, https://t.co/PluhlNfLFB was created by a self made artist just like you | With 14,000,000+ YouTube views and major artist writing credits",
"friends_count": 2366,
"location": "Los Angeles, CA",
"profile_link_color": "000000",
"profile_image_url": "http://pbs.twimg.com/profile_images/667575474319523842/Vq3rWjkB_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3766513995/1444269518",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/649719416553213956/Z8249YcF.jpg",
"screen_name": "TheRapperGuide",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 5897,
"name": "SmartRapper(dot)com",
"notifications": false,
"url": "https://t.co/PluhlNfLFB",
"created_at": "Fri Sep 25 02:45:24 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Mon Feb 01 01:01:05 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2813759695,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/514971597594058752/kOdnva_M.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/514971588421095426/47idQ1CP_normal.jpeg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 128,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "2813759695",
"profile_background_color": "0000FF",
"listed_count": 24,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 4925,
"description": "",
"friends_count": 62,
"location": "",
"profile_link_color": "0000FF",
"profile_image_url": "http://pbs.twimg.com/profile_images/514971588421095426/47idQ1CP_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/514971597594058752/kOdnva_M.jpeg",
"screen_name": "KatherynBalenti",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 3316,
"name": "Katheryn Balentine",
"notifications": false,
"url": null,
"created_at": "Tue Sep 16 21:35:06 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 19:18:59 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @KenecoB: Kanye West Will Premiere \u2018Waves\u2019 in Full at Madison Square Garden Live-Stream Event https://t.co/9xfhzhByiv #Kanye #Waves",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694962778650603521,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 115280260,
"indices": [
3,
11
],
"id_str": "115280260",
"screen_name": "KenecoB",
"name": "KenecoB"
}
],
"hashtags": [
{
"indices": [
121,
127
],
"text": "Kanye"
},
{
"indices": [
128,
134
],
"text": "Waves"
}
],
"urls": [
{
"url": "https://t.co/9xfhzhByiv",
"indices": [
97,
120
],
"expanded_url": "http://ow.ly/XS2tl",
"display_url": "ow.ly/XS2tl"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "694962778650603521",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Kanye West Will Premiere \u2018Waves\u2019 in Full at Madison Square Garden Live-Stream Event https://t.co/9xfhzhByiv #Kanye #Waves",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694959920970600448,
"favorite_count": 0,
"source": "<a href=\"http://www.hootsuite.com\" rel=\"nofollow\">Hootsuite</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
108,
114
],
"text": "Kanye"
},
{
"indices": [
115,
121
],
"text": "Waves"
}
],
"urls": [
{
"url": "https://t.co/9xfhzhByiv",
"indices": [
84,
107
],
"expanded_url": "http://ow.ly/XS2tl",
"display_url": "ow.ly/XS2tl"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "694959920970600448",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 115280260,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652279650429759488/WqaszTgY.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/557005695837806592/YvDHcqfF_normal.jpeg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/bJ9KiOa8b7",
"indices": [
0,
23
],
"expanded_url": "http://www.kenecobeauty.com/",
"display_url": "kenecobeauty.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 2517,
"profile_sidebar_border_color": "000000",
"id_str": "115280260",
"profile_background_color": "BADFCD",
"listed_count": 13,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 4357,
"description": "I do hair, I blog about beauty and soccer @GoalsGoneViral . Follow me on Instagram: @kenecobeauty",
"friends_count": 4550,
"location": "Nairobi and VA",
"profile_link_color": "FF0000",
"profile_image_url": "http://pbs.twimg.com/profile_images/557005695837806592/YvDHcqfF_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/115280260/1444350621",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652279650429759488/WqaszTgY.png",
"screen_name": "KenecoB",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 1521,
"name": "KenecoB",
"notifications": false,
"url": "https://t.co/bJ9KiOa8b7",
"created_at": "Thu Feb 18 05:11:48 +0000 2010",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 19:05:31 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 366660947,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/693502776777818112/tYDZJHNp_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/RsjQISRnJl",
"indices": [
0,
23
],
"expanded_url": "http://kalewa.co.ke",
"display_url": "kalewa.co.ke"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 2950,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "366660947",
"profile_background_color": "352726",
"listed_count": 37,
"is_translation_enabled": true,
"utc_offset": -25200,
"statuses_count": 58408,
"description": "Welcome to my diversion. That nigga people know nothing about. Well, to me Arsenal is the only choice \n\n\nTeam @Peter_Kenneth 2017",
"friends_count": 1847,
"location": "Asmara, Eritrea",
"profile_link_color": "3B94D9",
"profile_image_url": "http://pbs.twimg.com/profile_images/693502776777818112/tYDZJHNp_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/366660947/1451618651",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif",
"screen_name": "_Kalewa",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 1574,
"name": "Cabu",
"notifications": false,
"url": "https://t.co/RsjQISRnJl",
"created_at": "Fri Sep 02 15:47:28 +0000 2011",
"contributors_enabled": false,
"time_zone": "Arizona",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": true,
"lang": "en",
"created_at": "Wed Feb 03 19:16:52 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @Sassafrantz: When you're a manicurist and show up for work & Amber Rose wants her nails done. #kanye #bhole #hellno https://t.co/zEGeQ5\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694962686703095808,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 2323982664,
"indices": [
3,
15
],
"id_str": "2323982664",
"screen_name": "Sassafrantz",
"name": "Sassafrantz"
}
],
"hashtags": [
{
"indices": [
102,
108
],
"text": "kanye"
},
{
"indices": [
109,
115
],
"text": "bhole"
},
{
"indices": [
116,
123
],
"text": "hellno"
}
],
"urls": [],
"media": [
{
"source_user_id": 2323982664,
"source_status_id_str": "693117342616788992",
"expanded_url": "http://twitter.com/Sassafrantz/status/693117342616788992/photo/1",
"display_url": "pic.twitter.com/zEGeQ5oiOB",
"url": "https://t.co/zEGeQ5oiOB",
"media_url_https": "https://pbs.twimg.com/media/CZ5yi5bXEAM0yzm.jpg",
"source_user_id_str": "2323982664",
"source_status_id": 693117342616788992,
"id_str": "693117336518332419",
"sizes": {
"large": {
"h": 628,
"resize": "fit",
"w": 640
},
"small": {
"h": 333,
"resize": "fit",
"w": 340
},
"medium": {
"h": 588,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
124,
144
],
"type": "photo",
"id": 693117336518332419,
"media_url": "http://pbs.twimg.com/media/CZ5yi5bXEAM0yzm.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 227,
"id_str": "694962686703095808",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "When you're a manicurist and show up for work & Amber Rose wants her nails done. #kanye #bhole #hellno https://t.co/zEGeQ5oiOB",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 693117342616788992,
"favorite_count": 486,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
85,
91
],
"text": "kanye"
},
{
"indices": [
92,
98
],
"text": "bhole"
},
{
"indices": [
99,
106
],
"text": "hellno"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/Sassafrantz/status/693117342616788992/photo/1",
"display_url": "pic.twitter.com/zEGeQ5oiOB",
"url": "https://t.co/zEGeQ5oiOB",
"media_url_https": "https://pbs.twimg.com/media/CZ5yi5bXEAM0yzm.jpg",
"id_str": "693117336518332419",
"sizes": {
"large": {
"h": 628,
"resize": "fit",
"w": 640
},
"small": {
"h": 333,
"resize": "fit",
"w": 340
},
"medium": {
"h": 588,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
107,
130
],
"type": "photo",
"id": 693117336518332419,
"media_url": "http://pbs.twimg.com/media/CZ5yi5bXEAM0yzm.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 227,
"id_str": "693117342616788992",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2323982664,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/687046005565489153/yyLy3s5T_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/96EnTcu2Hi",
"indices": [
0,
23
],
"expanded_url": "http://youtu.be/PpGNC3BDfY8",
"display_url": "youtu.be/PpGNC3BDfY8"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 196266,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2323982664",
"profile_background_color": "C0DEED",
"listed_count": 1964,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 28248,
"description": "Sorry I did the Risky Business slide into your Grandma's funeral.",
"friends_count": 154163,
"location": "Follow me on Vine & Instagram",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/687046005565489153/yyLy3s5T_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2323982664/1407721768",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "Sassafrantz",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 162617,
"name": "Sassafrantz",
"notifications": false,
"url": "https://t.co/96EnTcu2Hi",
"created_at": "Sun Feb 02 16:05:01 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Fri Jan 29 17:03:46 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3528711158,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/680990171630800897/RgjmNxks_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 57,
"profile_sidebar_border_color": "C0DEED",
"id_str": "3528711158",
"profile_background_color": "C0DEED",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 597,
"description": "I enjoy long walks on the beach and being single.",
"friends_count": 111,
"location": "Fashion Whirlwind",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/680990171630800897/RgjmNxks_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "FatAndSassyGal",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 129,
"name": "Jaz",
"notifications": false,
"url": null,
"created_at": "Fri Sep 11 16:57:46 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 19:16:30 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#WizKhalifa Breaks Down #Kanye\u2019s Apology, Relationship w/#AmberRose @wizkhalifa https://t.co/hsR7yBKWYX",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694962372579061760,
"favorite_count": 0,
"source": "<a href=\"http://www.hootsuite.com\" rel=\"nofollow\">Hootsuite</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 20322929,
"indices": [
68,
79
],
"id_str": "20322929",
"screen_name": "wizkhalifa",
"name": "KOE"
}
],
"hashtags": [
{
"indices": [
0,
11
],
"text": "WizKhalifa"
},
{
"indices": [
24,
30
],
"text": "Kanye"
},
{
"indices": [
57,
67
],
"text": "AmberRose"
}
],
"urls": [
{
"url": "https://t.co/hsR7yBKWYX",
"indices": [
80,
103
],
"expanded_url": "http://ow.ly/XUb6I",
"display_url": "ow.ly/XUb6I"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694962372579061760",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 2799607010,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/580134250327846912/qVI7TBHB.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/583164742270775296/ErH_lr8z_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/3K6I0gzEth",
"indices": [
0,
23
],
"expanded_url": "http://www.HipHopCommission.com",
"display_url": "HipHopCommission.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 9735,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2799607010",
"profile_background_color": "3B94D9",
"listed_count": 41,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 11475,
"description": "Snap: hhcommission Email:hhcommission@gmail.com KIK:HipHopCommission IG:HipHopCommission",
"friends_count": 2629,
"location": "Uptown, Downtown, Switzerland",
"profile_link_color": "DD2E44",
"profile_image_url": "http://pbs.twimg.com/profile_images/583164742270775296/ErH_lr8z_normal.png",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2799607010/1427149862",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/580134250327846912/qVI7TBHB.png",
"screen_name": "hhcommission",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 23,
"name": "Hip Hop Commission",
"notifications": false,
"url": "https://t.co/3K6I0gzEth",
"created_at": "Tue Sep 09 10:08:59 +0000 2014",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 19:15:16 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @TheRapperGuide: #drake #jcole #coleworld #kanyewest #kanye\n\n https://t.co/eX05f5139K https://t.co/w9lbJD37KC",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694962104554672129,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 3766513995,
"indices": [
3,
18
],
"id_str": "3766513995",
"screen_name": "TheRapperGuide",
"name": "SmartRapper(dot)com"
}
],
"hashtags": [
{
"indices": [
20,
26
],
"text": "drake"
},
{
"indices": [
27,
33
],
"text": "jcole"
},
{
"indices": [
34,
44
],
"text": "coleworld"
},
{
"indices": [
45,
55
],
"text": "kanyewest"
},
{
"indices": [
56,
62
],
"text": "kanye"
}
],
"urls": [
{
"url": "https://t.co/eX05f5139K",
"indices": [
65,
88
],
"expanded_url": "https://www.youtube.com/watch?v=k78MGF_iO8I&0c87N",
"display_url": "youtube.com/watch?v=k78MGF\u2026"
}
],
"media": [
{
"source_user_id": 3766513995,
"source_status_id_str": "694083050171469824",
"expanded_url": "http://twitter.com/TheRapperGuide/status/694083050171469824/photo/1",
"display_url": "pic.twitter.com/w9lbJD37KC",
"url": "https://t.co/w9lbJD37KC",
"media_url_https": "https://pbs.twimg.com/media/CaHg2vkWIAEv4et.jpg",
"source_user_id_str": "3766513995",
"source_status_id": 694083050171469824,
"id_str": "694083048678236161",
"sizes": {
"large": {
"h": 507,
"resize": "fit",
"w": 507
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 507,
"resize": "fit",
"w": 507
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
89,
112
],
"type": "photo",
"id": 694083048678236161,
"media_url": "http://pbs.twimg.com/media/CaHg2vkWIAEv4et.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694962104554672129",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "#drake #jcole #coleworld #kanyewest #kanye\n\n https://t.co/eX05f5139K https://t.co/w9lbJD37KC",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694083050171469824,
"favorite_count": 5,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "drake"
},
{
"indices": [
7,
13
],
"text": "jcole"
},
{
"indices": [
14,
24
],
"text": "coleworld"
},
{
"indices": [
25,
35
],
"text": "kanyewest"
},
{
"indices": [
36,
42
],
"text": "kanye"
}
],
"urls": [
{
"url": "https://t.co/eX05f5139K",
"indices": [
45,
68
],
"expanded_url": "https://www.youtube.com/watch?v=k78MGF_iO8I&0c87N",
"display_url": "youtube.com/watch?v=k78MGF\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/TheRapperGuide/status/694083050171469824/photo/1",
"display_url": "pic.twitter.com/w9lbJD37KC",
"url": "https://t.co/w9lbJD37KC",
"media_url_https": "https://pbs.twimg.com/media/CaHg2vkWIAEv4et.jpg",
"id_str": "694083048678236161",
"sizes": {
"large": {
"h": 507,
"resize": "fit",
"w": 507
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 507,
"resize": "fit",
"w": 507
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
69,
92
],
"type": "photo",
"id": 694083048678236161,
"media_url": "http://pbs.twimg.com/media/CaHg2vkWIAEv4et.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694083050171469824",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3766513995,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/649719416553213956/Z8249YcF.jpg",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/667575474319523842/Vq3rWjkB_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/PluhlNfLFB",
"indices": [
0,
23
],
"expanded_url": "http://SmartRapper.com",
"display_url": "SmartRapper.com"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/PluhlNfLFB",
"indices": [
20,
43
],
"expanded_url": "http://SmartRapper.com",
"display_url": "SmartRapper.com"
}
]
}
},
"followers_count": 10741,
"profile_sidebar_border_color": "000000",
"id_str": "3766513995",
"profile_background_color": "FA743E",
"listed_count": 46,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 3340,
"description": "Unlike other sites, https://t.co/PluhlNfLFB was created by a self made artist just like you | With 14,000,000+ YouTube views and major artist writing credits",
"friends_count": 2366,
"location": "Los Angeles, CA",
"profile_link_color": "000000",
"profile_image_url": "http://pbs.twimg.com/profile_images/667575474319523842/Vq3rWjkB_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3766513995/1444269518",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/649719416553213956/Z8249YcF.jpg",
"screen_name": "TheRapperGuide",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 5897,
"name": "SmartRapper(dot)com",
"notifications": false,
"url": "https://t.co/PluhlNfLFB",
"created_at": "Fri Sep 25 02:45:24 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Mon Feb 01 09:01:09 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": true,
"id": 2416860600,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 29,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2416860600",
"profile_background_color": "C0DEED",
"listed_count": 28,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 3573,
"description": "",
"friends_count": 33,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "jysixapohog",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 2952,
"name": "Mitchell Howorth",
"notifications": false,
"url": null,
"created_at": "Sat Mar 29 03:33:04 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 19:14:12 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @nihilist_arbys: Yo #kanye! Arbys has beef too! The beef of millions of cow carcasses that will, like you, be forgotten in a godless unf\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694962003132096512,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 2983295300,
"indices": [
3,
18
],
"id_str": "2983295300",
"screen_name": "nihilist_arbys",
"name": "Nihilist Arby's"
}
],
"hashtags": [
{
"indices": [
23,
29
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3258,
"id_str": "694962003132096512",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Yo #kanye! Arbys has beef too! The beef of millions of cow carcasses that will, like you, be forgotten in a godless unfeeling void\nEat arbys",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 692449566482915328,
"favorite_count": 4864,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
3,
9
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3258,
"id_str": "692449566482915328",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 2983295300,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/555493486997151744/2UdQtjdE_normal.png",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/Vv2y8l6sOv",
"indices": [
0,
22
],
"expanded_url": "http://arbys.com",
"display_url": "arbys.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 174552,
"profile_sidebar_border_color": "000000",
"id_str": "2983295300",
"profile_background_color": "000000",
"listed_count": 943,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 483,
"description": "Officially, I have nothing to do with arby's. Unofficially, everything is nothing. nihilistarbys@gmail.com",
"friends_count": 0,
"location": "arby's",
"profile_link_color": "DD2E44",
"profile_image_url": "http://pbs.twimg.com/profile_images/555493486997151744/2UdQtjdE_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2983295300/1421278215",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "nihilist_arbys",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 0,
"name": "Nihilist Arby's",
"notifications": false,
"url": "http://t.co/Vv2y8l6sOv",
"created_at": "Wed Jan 14 22:33:08 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Jan 27 20:50:16 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 23502115,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/568390154/mgoym4r0xprahre8ufyo.jpeg",
"verified": false,
"profile_text_color": "666666",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/689900490063220737/5rRzsGyC_normal.jpg",
"profile_sidebar_fill_color": "252429",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 255,
"profile_sidebar_border_color": "181A1E",
"id_str": "23502115",
"profile_background_color": "1A1B1F",
"listed_count": 1,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 2976,
"description": "born a bad seed",
"friends_count": 59,
"location": "",
"profile_link_color": "2FC2EF",
"profile_image_url": "http://pbs.twimg.com/profile_images/689900490063220737/5rRzsGyC_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/23502115/1453322129",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/568390154/mgoym4r0xprahre8ufyo.jpeg",
"screen_name": "alexabacho",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 2186,
"name": "Alexa Bacho",
"notifications": false,
"url": null,
"created_at": "Mon Mar 09 21:11:46 +0000 2009",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 19:13:47 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @melaniebromley: Updated. Added today's feud + 3 breakups. Are we missing anything else? @enews #kanye #wizkhalifa https://t.co/mmo9jaRZ\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694961999193706496,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 19930164,
"indices": [
3,
18
],
"id_str": "19930164",
"screen_name": "melaniebromley",
"name": "Melanie Bromley"
},
{
"id": 22179997,
"indices": [
92,
98
],
"id_str": "22179997",
"screen_name": "ENews",
"name": "E! News"
}
],
"hashtags": [
{
"indices": [
99,
105
],
"text": "kanye"
},
{
"indices": [
106,
117
],
"text": "wizkhalifa"
}
],
"urls": [],
"media": [
{
"source_user_id": 19930164,
"source_status_id_str": "692439861781880832",
"expanded_url": "http://twitter.com/melaniebromley/status/692439861781880832/photo/1",
"display_url": "pic.twitter.com/mmo9jaRZZp",
"url": "https://t.co/mmo9jaRZZp",
"media_url_https": "https://pbs.twimg.com/media/CZwKRnEUkAASSz0.jpg",
"source_user_id_str": "19930164",
"source_status_id": 692439861781880832,
"id_str": "692439740369375232",
"sizes": {
"large": {
"h": 788,
"resize": "fit",
"w": 1024
},
"small": {
"h": 261,
"resize": "fit",
"w": 340
},
"medium": {
"h": 461,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
118,
140
],
"type": "photo",
"id": 692439740369375232,
"media_url": "http://pbs.twimg.com/media/CZwKRnEUkAASSz0.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1631,
"id_str": "694961999193706496",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Updated. Added today's feud + 3 breakups. Are we missing anything else? @enews #kanye #wizkhalifa https://t.co/mmo9jaRZZp",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 692439861781880832,
"favorite_count": 1622,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 22179997,
"indices": [
72,
78
],
"id_str": "22179997",
"screen_name": "ENews",
"name": "E! News"
}
],
"hashtags": [
{
"indices": [
79,
85
],
"text": "kanye"
},
{
"indices": [
86,
97
],
"text": "wizkhalifa"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/melaniebromley/status/692439861781880832/photo/1",
"display_url": "pic.twitter.com/mmo9jaRZZp",
"url": "https://t.co/mmo9jaRZZp",
"media_url_https": "https://pbs.twimg.com/media/CZwKRnEUkAASSz0.jpg",
"id_str": "692439740369375232",
"sizes": {
"large": {
"h": 788,
"resize": "fit",
"w": 1024
},
"small": {
"h": 261,
"resize": "fit",
"w": 340
},
"medium": {
"h": 461,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
98,
121
],
"type": "photo",
"id": 692439740369375232,
"media_url": "http://pbs.twimg.com/media/CZwKRnEUkAASSz0.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1631,
"id_str": "692439861781880832",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 19930164,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/461066418/873211081_b6e66bf4f9_o-1.jpg",
"verified": true,
"profile_text_color": "1C1F23",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/677005216466788352/7CdJYjeK_normal.jpg",
"profile_sidebar_fill_color": "C9C9C9",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/J6mkqdtREP",
"indices": [
0,
23
],
"expanded_url": "http://www.eonline.com",
"display_url": "eonline.com"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/Di4xifhjhb",
"indices": [
117,
140
],
"expanded_url": "https://www.linkedin.com/in/melanie-bromley-0967aa47",
"display_url": "linkedin.com/in/melanie-bro\u2026"
}
]
}
},
"followers_count": 26912,
"profile_sidebar_border_color": "BFBFBF",
"id_str": "19930164",
"profile_background_color": "3A0F96",
"listed_count": 91,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 3817,
"description": "Chief News Correspondent for @enews and @eonline. \n\nFeel free to contact me re: stories. melanie.bromley@nbcuni.com\n\nhttps://t.co/Di4xifhjhb",
"friends_count": 844,
"location": "melanie.bromley@nbcuni.com",
"profile_link_color": "22ABA0",
"profile_image_url": "http://pbs.twimg.com/profile_images/677005216466788352/7CdJYjeK_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/19930164/1424894672",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/461066418/873211081_b6e66bf4f9_o-1.jpg",
"screen_name": "melaniebromley",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 769,
"name": "Melanie Bromley",
"notifications": false,
"url": "https://t.co/J6mkqdtREP",
"created_at": "Mon Feb 02 20:39:45 +0000 2009",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Jan 27 20:11:42 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 37516991,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/694960982662238209/0Bz1K6kt_normal.jpg",
"profile_sidebar_fill_color": "E6F6F9",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 1209,
"profile_sidebar_border_color": "DBE9ED",
"id_str": "37516991",
"profile_background_color": "DBE9ED",
"listed_count": 2,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 19729,
"description": "18. Callum xx",
"friends_count": 2015,
"location": "berwick upon tweed",
"profile_link_color": "CC3366",
"profile_image_url": "http://pbs.twimg.com/profile_images/694960982662238209/0Bz1K6kt_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/37516991/1434641341",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif",
"screen_name": "gem_hutchinsonn",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 10499,
"name": "Gemma Hutchinson",
"notifications": false,
"url": null,
"created_at": "Sun May 03 22:17:38 +0000 2009",
"contributors_enabled": false,
"time_zone": "London",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 19:13:47 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#kanyewest #kanye #yeezy #kimkardashian\nhttps://t.co/pnEwohqGEU https://t.co/U5rB0F8gBt",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694961872534134784,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
10
],
"text": "kanyewest"
},
{
"indices": [
11,
17
],
"text": "kanye"
},
{
"indices": [
18,
24
],
"text": "yeezy"
},
{
"indices": [
25,
39
],
"text": "kimkardashian"
}
],
"urls": [
{
"url": "https://t.co/pnEwohqGEU",
"indices": [
40,
63
],
"expanded_url": "http://www.MyCrazyLifeStory.com/2016Tattoos49",
"display_url": "MyCrazyLifeStory.com/2016Tattoos49"
}
],
"media": [
{
"expanded_url": "http://twitter.com/MalorieDenbow/status/694961872534134784/photo/1",
"display_url": "pic.twitter.com/U5rB0F8gBt",
"url": "https://t.co/U5rB0F8gBt",
"media_url_https": "https://pbs.twimg.com/media/CaUAFRmWIAAu7ef.jpg",
"id_str": "694961808122191872",
"sizes": {
"large": {
"h": 507,
"resize": "fit",
"w": 507
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 507,
"resize": "fit",
"w": 507
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
64,
87
],
"type": "photo",
"id": 694961808122191872,
"media_url": "http://pbs.twimg.com/media/CaUAFRmWIAAu7ef.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694961872534134784",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2813668471,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/514970709085274113/bY-JAeK_.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/514970699195117569/nldhEVFs_normal.jpeg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 110,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "2813668471",
"profile_background_color": "0000FF",
"listed_count": 36,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 6495,
"description": "",
"friends_count": 66,
"location": "",
"profile_link_color": "0000FF",
"profile_image_url": "http://pbs.twimg.com/profile_images/514970699195117569/nldhEVFs_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/514970709085274113/bY-JAeK_.jpeg",
"screen_name": "MalorieDenbow",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 3360,
"name": "Malorie Denbow",
"notifications": false,
"url": null,
"created_at": "Tue Sep 16 20:03:57 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 19:13:16 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "4 sale perfect condition 2 a friend 2 tell a friend #car #sale #football #messi #fingerintheass #Kanye #kk #london https://t.co/FMMxKr9g9v",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694960887967391744,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
53,
57
],
"text": "car"
},
{
"indices": [
58,
63
],
"text": "sale"
},
{
"indices": [
64,
73
],
"text": "football"
},
{
"indices": [
74,
80
],
"text": "messi"
},
{
"indices": [
81,
96
],
"text": "fingerintheass"
},
{
"indices": [
97,
103
],
"text": "Kanye"
},
{
"indices": [
104,
107
],
"text": "kk"
},
{
"indices": [
108,
115
],
"text": "london"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/bgbt22/status/694960887967391744/photo/1",
"display_url": "pic.twitter.com/FMMxKr9g9v",
"url": "https://t.co/FMMxKr9g9v",
"media_url_https": "https://pbs.twimg.com/media/CaT_O7kWEAAJe7j.jpg",
"id_str": "694960874495283200",
"sizes": {
"large": {
"h": 677,
"resize": "fit",
"w": 639
},
"small": {
"h": 360,
"resize": "fit",
"w": 340
},
"medium": {
"h": 635,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
116,
139
],
"type": "photo",
"id": 694960874495283200,
"media_url": "http://pbs.twimg.com/media/CaT_O7kWEAAJe7j.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694960887967391744",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 611242201,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000012868809/7663f2b4475642d98c435c5e04523df9.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/692812696463482880/oIuMbRKd_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 349,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "611242201",
"profile_background_color": "C0DEED",
"listed_count": 1,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 4298,
"description": "Cash grabbers",
"friends_count": 365,
"location": "outhere",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/692812696463482880/oIuMbRKd_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/611242201/1372676795",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000012868809/7663f2b4475642d98c435c5e04523df9.jpeg",
"screen_name": "bgbt22",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 1419,
"name": "Born Grafter Alpo",
"notifications": false,
"url": null,
"created_at": "Mon Jun 18 00:16:16 +0000 2012",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 19:09:22 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#music #Kanye West Kanye West: OK, Maybe Waves Isn\u2019t THE Best Album Of Al... https://t.co/ffJY3Bd6J3 https://t.co/Ecok3viWMT",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694960330657517569,
"favorite_count": 0,
"source": "<a href=\"http://www.myeffecto.com/discover\" rel=\"nofollow\">MusicEffecto</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "music"
},
{
"indices": [
8,
14
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/ffJY3Bd6J3",
"indices": [
78,
101
],
"expanded_url": "http://www.myeffecto.com/r/a7t5_tp",
"display_url": "myeffecto.com/r/a7t5_tp"
}
],
"media": [
{
"expanded_url": "http://twitter.com/musicEffecto/status/694960330657517569/photo/1",
"display_url": "pic.twitter.com/Ecok3viWMT",
"url": "https://t.co/Ecok3viWMT",
"media_url_https": "https://pbs.twimg.com/media/CaT-vQyVAAAXMmJ.jpg",
"id_str": "694960330435264512",
"sizes": {
"small": {
"h": 179,
"resize": "fit",
"w": 340
},
"large": {
"h": 350,
"resize": "fit",
"w": 663
},
"medium": {
"h": 316,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
102,
125
],
"type": "photo",
"id": 694960330435264512,
"media_url": "http://pbs.twimg.com/media/CaT-vQyVAAAXMmJ.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694960330657517569",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2412136166,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/448814043550064640/9vqrlAp9_normal.jpeg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/a1mnReOXE1",
"indices": [
0,
23
],
"expanded_url": "https://wordpress.org/plugins/instant-feedback/",
"display_url": "wordpress.org/plugins/instan\u2026"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 316,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2412136166",
"profile_background_color": "C0DEED",
"listed_count": 182,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 132534,
"description": "Would you like to have Facebook like reaction button on your blog. Try out Myeffecto",
"friends_count": 14,
"location": "support@myeffecto.com",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/448814043550064640/9vqrlAp9_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "musicEffecto",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 2,
"name": "Music Effecto",
"notifications": false,
"url": "https://t.co/a1mnReOXE1",
"created_at": "Wed Mar 26 06:05:33 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 19:07:09 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Kanye West Will Premiere \u2018Waves\u2019 in Full at Madison Square Garden Live-Stream Event https://t.co/9xfhzhByiv #Kanye #Waves",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694959920970600448,
"favorite_count": 0,
"source": "<a href=\"http://www.hootsuite.com\" rel=\"nofollow\">Hootsuite</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
108,
114
],
"text": "Kanye"
},
{
"indices": [
115,
121
],
"text": "Waves"
}
],
"urls": [
{
"url": "https://t.co/9xfhzhByiv",
"indices": [
84,
107
],
"expanded_url": "http://ow.ly/XS2tl",
"display_url": "ow.ly/XS2tl"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "694959920970600448",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 115280260,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652279650429759488/WqaszTgY.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/557005695837806592/YvDHcqfF_normal.jpeg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/bJ9KiOa8b7",
"indices": [
0,
23
],
"expanded_url": "http://www.kenecobeauty.com/",
"display_url": "kenecobeauty.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 2517,
"profile_sidebar_border_color": "000000",
"id_str": "115280260",
"profile_background_color": "BADFCD",
"listed_count": 13,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 4357,
"description": "I do hair, I blog about beauty and soccer @GoalsGoneViral . Follow me on Instagram: @kenecobeauty",
"friends_count": 4550,
"location": "Nairobi and VA",
"profile_link_color": "FF0000",
"profile_image_url": "http://pbs.twimg.com/profile_images/557005695837806592/YvDHcqfF_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/115280260/1444350621",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652279650429759488/WqaszTgY.png",
"screen_name": "KenecoB",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 1521,
"name": "KenecoB",
"notifications": false,
"url": "https://t.co/bJ9KiOa8b7",
"created_at": "Thu Feb 18 05:11:48 +0000 2010",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 19:05:31 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @ALLiThAtGiRL: Bet it was #Kanye\n\n#WizKhalifa #Rolex #Brazil https://t.co/DRSs56ffS8",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694959689780568065,
"favorite_count": 0,
"source": "<a href=\"https://roundteam.co\" rel=\"nofollow\">RoundTeam</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 21245395,
"indices": [
3,
16
],
"id_str": "21245395",
"screen_name": "ALLiThAtGiRL",
"name": "Alli That Girl"
}
],
"hashtags": [
{
"indices": [
29,
35
],
"text": "Kanye"
},
{
"indices": [
37,
48
],
"text": "WizKhalifa"
},
{
"indices": [
49,
55
],
"text": "Rolex"
},
{
"indices": [
56,
63
],
"text": "Brazil"
}
],
"urls": [
{
"url": "https://t.co/DRSs56ffS8",
"indices": [
64,
87
],
"expanded_url": "http://fb.me/5cwTOEbgQ",
"display_url": "fb.me/5cwTOEbgQ"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694959689780568065",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Bet it was #Kanye\n\n#WizKhalifa #Rolex #Brazil https://t.co/DRSs56ffS8",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694958852895150082,
"favorite_count": 2,
"source": "<a href=\"http://www.facebook.com/twitter\" rel=\"nofollow\">Facebook</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
11,
17
],
"text": "Kanye"
},
{
"indices": [
19,
30
],
"text": "WizKhalifa"
},
{
"indices": [
31,
37
],
"text": "Rolex"
},
{
"indices": [
38,
45
],
"text": "Brazil"
}
],
"urls": [
{
"url": "https://t.co/DRSs56ffS8",
"indices": [
46,
69
],
"expanded_url": "http://fb.me/5cwTOEbgQ",
"display_url": "fb.me/5cwTOEbgQ"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694958852895150082",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 21245395,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif",
"verified": false,
"profile_text_color": "3C3940",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/490889007253835776/BCxtg27w_normal.jpeg",
"profile_sidebar_fill_color": "95E8EC",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/m8g7RPEgxv",
"indices": [
0,
22
],
"expanded_url": "http://www.wild941.com/alli",
"display_url": "wild941.com/alli"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 5440,
"profile_sidebar_border_color": "5ED4DC",
"id_str": "21245395",
"profile_background_color": "0099B9",
"listed_count": 65,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 18753,
"description": "Five Feet Of Fire Midday HO(st)/Programming Research Director",
"friends_count": 5743,
"location": "WiLD 94.1 Tampa Bay WLLD-FM",
"profile_link_color": "0099B9",
"profile_image_url": "http://pbs.twimg.com/profile_images/490889007253835776/BCxtg27w_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/21245395/1358310394",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif",
"screen_name": "ALLiThAtGiRL",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 3128,
"name": "Alli That Girl",
"notifications": false,
"url": "http://t.co/m8g7RPEgxv",
"created_at": "Wed Feb 18 21:52:32 +0000 2009",
"contributors_enabled": false,
"time_zone": "Quito",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 19:01:16 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3444909377,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/636473757968805888/n_flt7Ik.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/636468672605741056/-GPyI6uJ_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 1030,
"profile_sidebar_border_color": "000000",
"id_str": "3444909377",
"profile_background_color": "DD2E44",
"listed_count": 114,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 28433,
"description": "I speak for myself. I always cheer for the bad guy in movies. I love horror villains & gangster films.",
"friends_count": 916,
"location": "",
"profile_link_color": "000000",
"profile_image_url": "http://pbs.twimg.com/profile_images/636468672605741056/-GPyI6uJ_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3444909377/1440581752",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/636473757968805888/n_flt7Ik.png",
"screen_name": "ShockVillain",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 29585,
"name": "Patterson Zo",
"notifications": false,
"url": null,
"created_at": "Wed Aug 26 08:03:19 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 19:04:36 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @ALLiThAtGiRL: Bet it was #Kanye\n\n#WizKhalifa #Rolex #Brazil https://t.co/DRSs56ffS8",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694959604925652993,
"favorite_count": 0,
"source": "<a href=\"https://roundteam.co\" rel=\"nofollow\">RoundTeam</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 21245395,
"indices": [
3,
16
],
"id_str": "21245395",
"screen_name": "ALLiThAtGiRL",
"name": "Alli That Girl"
}
],
"hashtags": [
{
"indices": [
29,
35
],
"text": "Kanye"
},
{
"indices": [
37,
48
],
"text": "WizKhalifa"
},
{
"indices": [
49,
55
],
"text": "Rolex"
},
{
"indices": [
56,
63
],
"text": "Brazil"
}
],
"urls": [
{
"url": "https://t.co/DRSs56ffS8",
"indices": [
64,
87
],
"expanded_url": "http://fb.me/5cwTOEbgQ",
"display_url": "fb.me/5cwTOEbgQ"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694959604925652993",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Bet it was #Kanye\n\n#WizKhalifa #Rolex #Brazil https://t.co/DRSs56ffS8",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694958852895150082,
"favorite_count": 2,
"source": "<a href=\"http://www.facebook.com/twitter\" rel=\"nofollow\">Facebook</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
11,
17
],
"text": "Kanye"
},
{
"indices": [
19,
30
],
"text": "WizKhalifa"
},
{
"indices": [
31,
37
],
"text": "Rolex"
},
{
"indices": [
38,
45
],
"text": "Brazil"
}
],
"urls": [
{
"url": "https://t.co/DRSs56ffS8",
"indices": [
46,
69
],
"expanded_url": "http://fb.me/5cwTOEbgQ",
"display_url": "fb.me/5cwTOEbgQ"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694958852895150082",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 21245395,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif",
"verified": false,
"profile_text_color": "3C3940",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/490889007253835776/BCxtg27w_normal.jpeg",
"profile_sidebar_fill_color": "95E8EC",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/m8g7RPEgxv",
"indices": [
0,
22
],
"expanded_url": "http://www.wild941.com/alli",
"display_url": "wild941.com/alli"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 5440,
"profile_sidebar_border_color": "5ED4DC",
"id_str": "21245395",
"profile_background_color": "0099B9",
"listed_count": 65,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 18753,
"description": "Five Feet Of Fire Midday HO(st)/Programming Research Director",
"friends_count": 5743,
"location": "WiLD 94.1 Tampa Bay WLLD-FM",
"profile_link_color": "0099B9",
"profile_image_url": "http://pbs.twimg.com/profile_images/490889007253835776/BCxtg27w_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/21245395/1358310394",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif",
"screen_name": "ALLiThAtGiRL",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 3128,
"name": "Alli That Girl",
"notifications": false,
"url": "http://t.co/m8g7RPEgxv",
"created_at": "Wed Feb 18 21:52:32 +0000 2009",
"contributors_enabled": false,
"time_zone": "Quito",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 19:01:16 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3246035692,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/597668247241011201/g49ckTG3.jpg",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/597666768254021632/vwXTc2FN_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 3138,
"profile_sidebar_border_color": "000000",
"id_str": "3246035692",
"profile_background_color": "000000",
"listed_count": 363,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 83391,
"description": "#Music. Twitter Turntable with #hiphop, remixes, #mashups, #oldschool, updates, affiliate links, #soundcloud music, #itunes & more.",
"friends_count": 2959,
"location": "",
"profile_link_color": "000000",
"profile_image_url": "http://pbs.twimg.com/profile_images/597666768254021632/vwXTc2FN_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3246035692/1444980708",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/597668247241011201/g49ckTG3.jpg",
"screen_name": "_RTDJ",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 88042,
"name": "Respect The DJ",
"notifications": false,
"url": null,
"created_at": "Mon May 11 07:31:28 +0000 2015",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 19:04:16 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @MusicGxd: This is how @wizkhalifa is reading @kanyewest tweets right now \ud83d\ude05\n\n#kanye #waves #wiz https://t.co/3pXDqUrfHb",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694959273831346176,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 4748371782,
"indices": [
3,
12
],
"id_str": "4748371782",
"screen_name": "MusicGxd",
"name": "TheGod"
},
{
"id": 20322929,
"indices": [
26,
37
],
"id_str": "20322929",
"screen_name": "wizkhalifa",
"name": "KOE"
},
{
"id": 169686021,
"indices": [
49,
59
],
"id_str": "169686021",
"screen_name": "kanyewest",
"name": "KANYE WEST"
}
],
"hashtags": [
{
"indices": [
80,
86
],
"text": "kanye"
},
{
"indices": [
87,
93
],
"text": "waves"
},
{
"indices": [
94,
98
],
"text": "wiz"
}
],
"urls": [],
"media": [
{
"source_user_id": 4748371782,
"source_status_id_str": "692440790061043712",
"expanded_url": "http://twitter.com/MusicGxd/status/692440790061043712/video/1",
"display_url": "pic.twitter.com/3pXDqUrfHb",
"url": "https://t.co/3pXDqUrfHb",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692440548519456768/pu/img/25ZC01AIwRetjhzZ.jpg",
"source_user_id_str": "4748371782",
"source_status_id": 692440790061043712,
"id_str": "692440548519456768",
"sizes": {
"small": {
"h": 191,
"resize": "fit",
"w": 340
},
"large": {
"h": 576,
"resize": "fit",
"w": 1024
},
"medium": {
"h": 338,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
99,
122
],
"type": "photo",
"id": 692440548519456768,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692440548519456768/pu/img/25ZC01AIwRetjhzZ.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 13,
"id_str": "694959273831346176",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "This is how @wizkhalifa is reading @kanyewest tweets right now \ud83d\ude05\n\n#kanye #waves #wiz https://t.co/3pXDqUrfHb",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 692440790061043712,
"favorite_count": 37,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 20322929,
"indices": [
12,
23
],
"id_str": "20322929",
"screen_name": "wizkhalifa",
"name": "KOE"
},
{
"id": 169686021,
"indices": [
35,
45
],
"id_str": "169686021",
"screen_name": "kanyewest",
"name": "KANYE WEST"
}
],
"hashtags": [
{
"indices": [
66,
72
],
"text": "kanye"
},
{
"indices": [
73,
79
],
"text": "waves"
},
{
"indices": [
80,
84
],
"text": "wiz"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/MusicGxd/status/692440790061043712/video/1",
"display_url": "pic.twitter.com/3pXDqUrfHb",
"url": "https://t.co/3pXDqUrfHb",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692440548519456768/pu/img/25ZC01AIwRetjhzZ.jpg",
"id_str": "692440548519456768",
"sizes": {
"small": {
"h": 191,
"resize": "fit",
"w": 340
},
"large": {
"h": 576,
"resize": "fit",
"w": 1024
},
"medium": {
"h": 338,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
85,
108
],
"type": "photo",
"id": 692440548519456768,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692440548519456768/pu/img/25ZC01AIwRetjhzZ.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 13,
"id_str": "692440790061043712",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 4748371782,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/691743360684396544/Ui-MuxnU_normal.jpg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 1006,
"profile_sidebar_border_color": "EEEEEE",
"id_str": "4748371782",
"profile_background_color": "131516",
"listed_count": 6,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 497,
"description": "I post shit that i like. Specially music and funny videos. Retweet if you like what i post, anyway\nfollow The God to be guided to greatness.",
"friends_count": 640,
"location": "Houston, TX",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/691743360684396544/Ui-MuxnU_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/4748371782/1454013551",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif",
"screen_name": "MusicGxd",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 13305,
"name": "TheGod",
"notifications": false,
"url": null,
"created_at": "Tue Jan 12 13:59:03 +0000 2016",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Jan 27 20:15:23 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 3711475992,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/689324194723528704/CSESKyTR_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 331,
"profile_sidebar_border_color": "000000",
"id_str": "3711475992",
"profile_background_color": "000000",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 5135,
"description": "Don't you dare be sour",
"friends_count": 526,
"location": "Devil's Whorehouse",
"profile_link_color": "DD2E44",
"profile_image_url": "http://pbs.twimg.com/profile_images/689324194723528704/CSESKyTR_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3711475992/1453794570",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "RawIsAngel",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 1524,
"name": "Angel",
"notifications": false,
"url": null,
"created_at": "Mon Sep 28 05:47:04 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 19:02:57 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Bet it was #Kanye\n\n#WizKhalifa #Rolex #Brazil https://t.co/DRSs56ffS8",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694958852895150082,
"favorite_count": 2,
"source": "<a href=\"http://www.facebook.com/twitter\" rel=\"nofollow\">Facebook</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
11,
17
],
"text": "Kanye"
},
{
"indices": [
19,
30
],
"text": "WizKhalifa"
},
{
"indices": [
31,
37
],
"text": "Rolex"
},
{
"indices": [
38,
45
],
"text": "Brazil"
}
],
"urls": [
{
"url": "https://t.co/DRSs56ffS8",
"indices": [
46,
69
],
"expanded_url": "http://fb.me/5cwTOEbgQ",
"display_url": "fb.me/5cwTOEbgQ"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694958852895150082",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 21245395,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif",
"verified": false,
"profile_text_color": "3C3940",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/490889007253835776/BCxtg27w_normal.jpeg",
"profile_sidebar_fill_color": "95E8EC",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/m8g7RPEgxv",
"indices": [
0,
22
],
"expanded_url": "http://www.wild941.com/alli",
"display_url": "wild941.com/alli"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 5440,
"profile_sidebar_border_color": "5ED4DC",
"id_str": "21245395",
"profile_background_color": "0099B9",
"listed_count": 65,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 18753,
"description": "Five Feet Of Fire Midday HO(st)/Programming Research Director",
"friends_count": 5743,
"location": "WiLD 94.1 Tampa Bay WLLD-FM",
"profile_link_color": "0099B9",
"profile_image_url": "http://pbs.twimg.com/profile_images/490889007253835776/BCxtg27w_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/21245395/1358310394",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif",
"screen_name": "ALLiThAtGiRL",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 3128,
"name": "Alli That Girl",
"notifications": false,
"url": "http://t.co/m8g7RPEgxv",
"created_at": "Wed Feb 18 21:52:32 +0000 2009",
"contributors_enabled": false,
"time_zone": "Quito",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 19:01:16 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "That\u2019s my commandment, you ain\u2019t gotta ask Moses /\nMore champagne, more toastses /\nMore damn planes, more coastses\n#kanye #parashatmishpatim",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694958655242788864,
"favorite_count": 2,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
115,
121
],
"text": "kanye"
},
{
"indices": [
122,
140
],
"text": "parashatmishpatim"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694958655242788864",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 28623892,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/7517404/221373791_9a81e49ba9_b.jpg",
"verified": false,
"profile_text_color": "666666",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/688108121881853953/Y1Gg_xNr_normal.jpg",
"profile_sidebar_fill_color": "252429",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/BV08Yw2gJj",
"indices": [
0,
22
],
"expanded_url": "http://about.me/orenhayon",
"display_url": "about.me/orenhayon"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 1702,
"profile_sidebar_border_color": "181A1E",
"id_str": "28623892",
"profile_background_color": "1A1B1F",
"listed_count": 88,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 3200,
"description": "Rabbi Oren Hayon: Gadfly. Enthusiast. Level 9 Cleric. All opinions tweeted are mine alone.",
"friends_count": 648,
"location": "Houston, TX",
"profile_link_color": "ABB8C2",
"profile_image_url": "http://pbs.twimg.com/profile_images/688108121881853953/Y1Gg_xNr_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/28623892/1435177617",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/7517404/221373791_9a81e49ba9_b.jpg",
"screen_name": "RabbiHayon",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 55,
"name": "Rabbi Oren Hayon",
"notifications": false,
"url": "http://t.co/BV08Yw2gJj",
"created_at": "Fri Apr 03 18:32:47 +0000 2009",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 19:00:29 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#TBT to 2013. I waited in Glasgow for #Yeezus hype. Damn right I'm doing #WAVES in a cinema. Yeciple for life #Kanye https://t.co/9MEbGitLWx",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694958028727148545,
"favorite_count": 1,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
4
],
"text": "TBT"
},
{
"indices": [
38,
45
],
"text": "Yeezus"
},
{
"indices": [
73,
79
],
"text": "WAVES"
},
{
"indices": [
110,
116
],
"text": "Kanye"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/HastieBeatz/status/694958028727148545/photo/1",
"display_url": "pic.twitter.com/9MEbGitLWx",
"url": "https://t.co/9MEbGitLWx",
"media_url_https": "https://pbs.twimg.com/media/CaT8pN1W4AA7R9q.jpg",
"id_str": "694958027540193280",
"sizes": {
"large": {
"h": 800,
"resize": "fit",
"w": 600
},
"small": {
"h": 453,
"resize": "fit",
"w": 340
},
"medium": {
"h": 800,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
117,
140
],
"type": "photo",
"id": 694958027540193280,
"media_url": "http://pbs.twimg.com/media/CaT8pN1W4AA7R9q.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "694958028727148545",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 27686319,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/874250631/41c1de1f95267c01310e0b904bd44cde.jpeg",
"verified": false,
"profile_text_color": "666666",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/673997934204207104/EJbo8wZ0_normal.jpg",
"profile_sidebar_fill_color": "252429",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/SIk0LpfGhJ",
"indices": [
0,
23
],
"expanded_url": "http://scotthastie.co.uk",
"display_url": "scotthastie.co.uk"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 497,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "27686319",
"profile_background_color": "1A1B1F",
"listed_count": 16,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 5481,
"description": "Dep.Station Manager @SparkSunderland||UoS Radio MA Grad||Crazy About New Music and TV/Movie/Sport Culture|| Playlist Maker & Radio Ideas Person",
"friends_count": 854,
"location": "A Scot in Sunderland, UK",
"profile_link_color": "ABB8C2",
"profile_image_url": "http://pbs.twimg.com/profile_images/673997934204207104/EJbo8wZ0_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/27686319/1441565172",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/874250631/41c1de1f95267c01310e0b904bd44cde.jpeg",
"screen_name": "HastieBeatz",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 541,
"name": "Scott Hastie",
"notifications": false,
"url": "https://t.co/SIk0LpfGhJ",
"created_at": "Mon Mar 30 17:29:52 +0000 2009",
"contributors_enabled": false,
"time_zone": "Edinburgh",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 18:58:00 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @WarVet_MarsOne: Let's Talk: #KanyeAnalPlaylist Kanye and Wiz Kalifa twitter beef https://t.co/vAZrdM4rtN\n#Kanye #KanyeWest #AmberRose #\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694956015868104704,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 2784784744,
"indices": [
3,
18
],
"id_str": "2784784744",
"screen_name": "WarVet_MarsOne",
"name": "Disabled War Vet"
}
],
"hashtags": [
{
"indices": [
32,
50
],
"text": "KanyeAnalPlaylist"
},
{
"indices": [
109,
115
],
"text": "Kanye"
},
{
"indices": [
116,
126
],
"text": "KanyeWest"
},
{
"indices": [
127,
137
],
"text": "AmberRose"
},
{
"indices": [
139,
140
],
"text": "WizKhalifa"
}
],
"urls": [
{
"url": "https://t.co/vAZrdM4rtN",
"indices": [
85,
108
],
"expanded_url": "https://www.youtube.com/watch?v=Z0NpEH6Gq28",
"display_url": "youtube.com/watch?v=Z0NpEH\u2026"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694956015868104704",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Let's Talk: #KanyeAnalPlaylist Kanye and Wiz Kalifa twitter beef https://t.co/vAZrdM4rtN\n#Kanye #KanyeWest #AmberRose #WizKhalifa",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 693179993619369984,
"favorite_count": 3,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
12,
30
],
"text": "KanyeAnalPlaylist"
},
{
"indices": [
89,
95
],
"text": "Kanye"
},
{
"indices": [
96,
106
],
"text": "KanyeWest"
},
{
"indices": [
107,
117
],
"text": "AmberRose"
},
{
"indices": [
118,
129
],
"text": "WizKhalifa"
}
],
"urls": [
{
"url": "https://t.co/vAZrdM4rtN",
"indices": [
65,
88
],
"expanded_url": "https://www.youtube.com/watch?v=Z0NpEH6Gq28",
"display_url": "youtube.com/watch?v=Z0NpEH\u2026"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "693179993619369984",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 2784784744,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/686339096357244928/Yf-ongZG_normal.png",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/EBVjyPlU4N",
"indices": [
0,
23
],
"expanded_url": "https://www.youtube.com/channel/UCIFMoAXeFA9spdkPzu4njfQ",
"display_url": "youtube.com/channel/UCIFMo\u2026"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 29903,
"profile_sidebar_border_color": "000000",
"id_str": "2784784744",
"profile_background_color": "000000",
"listed_count": 153,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 1449,
"description": "I Make Vlogs about Mars One and current events. One of the first investors of the Mars One project. PTSD advocate.",
"friends_count": 19715,
"location": "South Carolina",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/686339096357244928/Yf-ongZG_normal.png",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2784784744/1452469548",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "WarVet_MarsOne",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 2873,
"name": "Disabled War Vet",
"notifications": false,
"url": "https://t.co/EBVjyPlU4N",
"created_at": "Fri Sep 26 01:45:02 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "ht",
"created_at": "Fri Jan 29 21:12:43 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "ht",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 622239475,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/685558495345770496/FGYrH9aO_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 36,
"profile_sidebar_border_color": "C0DEED",
"id_str": "622239475",
"profile_background_color": "C0DEED",
"listed_count": 1,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 216,
"description": "",
"friends_count": 242,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/685558495345770496/FGYrH9aO_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "TOYAdaug",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 81,
"name": "TOYA \u2661\u00b0",
"notifications": false,
"url": null,
"created_at": "Fri Jun 29 21:03:52 +0000 2012",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "ht",
"created_at": "Wed Feb 03 18:50:00 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "ht",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "@spacemanspooky i slipped through the toilet paper, i feel like #kanye",
"is_quote_status": false,
"in_reply_to_status_id": 694932345724342273,
"id": 694954617008975872,
"favorite_count": 1,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 2998677970,
"indices": [
0,
15
],
"id_str": "2998677970",
"screen_name": "spacemanspooky",
"name": "Spaceman Spooky"
}
],
"hashtags": [
{
"indices": [
64,
70
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": "spacemanspooky",
"in_reply_to_user_id": 2998677970,
"retweet_count": 0,
"id_str": "694954617008975872",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2998677970,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/586723438422724608/hBZT3rkX.jpg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/691764424949002240/6gLiC_wP_normal.jpg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 194,
"profile_sidebar_border_color": "EEEEEE",
"id_str": "2998677970",
"profile_background_color": "131516",
"listed_count": 40,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 4034,
"description": "Dino Dad. #teamjurassic",
"friends_count": 146,
"location": "",
"profile_link_color": "89C9FA",
"profile_image_url": "http://pbs.twimg.com/profile_images/691764424949002240/6gLiC_wP_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2998677970/1454473469",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/586723438422724608/hBZT3rkX.jpg",
"screen_name": "spacemanspooky",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 8356,
"name": "Spaceman Spooky",
"notifications": false,
"url": null,
"created_at": "Sun Jan 25 21:20:22 +0000 2015",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": "2998677970",
"lang": "en",
"created_at": "Wed Feb 03 18:44:26 +0000 2016",
"in_reply_to_status_id_str": "694932345724342273",
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Check out Wiz on this Short interview. #positivevibes #luvtotheluvers #wiz #kanye #kimkardashian #amberrose https://t.co/3ZVfMcRWWP",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694953649148047360,
"favorite_count": 1,
"source": "<a href=\"http://www.facebook.com/twitter\" rel=\"nofollow\">Facebook</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
39,
53
],
"text": "positivevibes"
},
{
"indices": [
55,
70
],
"text": "luvtotheluvers"
},
{
"indices": [
71,
75
],
"text": "wiz"
},
{
"indices": [
76,
82
],
"text": "kanye"
},
{
"indices": [
83,
97
],
"text": "kimkardashian"
},
{
"indices": [
98,
108
],
"text": "amberrose"
}
],
"urls": [
{
"url": "https://t.co/3ZVfMcRWWP",
"indices": [
109,
132
],
"expanded_url": "http://fb.me/7DXvM5DD5",
"display_url": "fb.me/7DXvM5DD5"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694953649148047360",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2649024271,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/653464124366585856/xiO5v5HX_normal.png",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/AAOBosPq3E",
"indices": [
0,
23
],
"expanded_url": "http://stillstanding2k.com",
"display_url": "stillstanding2k.com"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/ignxDEuPFP",
"indices": [
50,
73
],
"expanded_url": "http://stillstanding2k.com/submit",
"display_url": "stillstanding2k.com/submit"
}
]
}
},
"followers_count": 28747,
"profile_sidebar_border_color": "EEEEEE",
"id_str": "2649024271",
"profile_background_color": "131516",
"listed_count": 64,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 5995,
"description": "All artist send your music here for consideration https://t.co/ignxDEuPFP much love! inquiries: Stillstanding2k@gmail.com",
"friends_count": 15984,
"location": "Los Angeles CA",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/653464124366585856/xiO5v5HX_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2649024271/1444633017",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif",
"screen_name": "stillstanding2k",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 690,
"name": "Still Standing Music",
"notifications": false,
"url": "https://t.co/AAOBosPq3E",
"created_at": "Tue Jul 15 19:04:09 +0000 2014",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 18:40:36 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "'Kanye'\nhttps://t.co/MDTpYC30pK\n#Kanye #KanyeWest",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694952470099816448,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
32,
38
],
"text": "Kanye"
},
{
"indices": [
39,
49
],
"text": "KanyeWest"
}
],
"urls": [
{
"url": "https://t.co/MDTpYC30pK",
"indices": [
8,
31
],
"expanded_url": "https://www.youtube.com/watch?v=_R7if3k9HG8",
"display_url": "youtube.com/watch?v=_R7if3\u2026"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694952470099816448",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 17977281,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/253331656/xd8fe13772f9961b1be6775b1fec5c31.jpg",
"verified": false,
"profile_text_color": "A84000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/491210641382731776/4e5g-QBd_normal.jpeg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/gaRKTaXsP7",
"indices": [
0,
23
],
"expanded_url": "http://www.cdbaby.com/cd/kevingant57",
"display_url": "cdbaby.com/cd/kevingant57"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/y39b5kTwHM",
"indices": [
30,
53
],
"expanded_url": "https://itunes.apple.com/us/movie/kevin/id507744865",
"display_url": "itunes.apple.com/us/movie/kevin\u2026"
},
{
"url": "https://t.co/wAaGZVSvz9",
"indices": [
81,
104
],
"expanded_url": "https://www.youtube.com/watch?v=0_vtHHzzZAU",
"display_url": "youtube.com/watch?v=0_vtHH\u2026"
}
]
}
},
"followers_count": 2023,
"profile_sidebar_border_color": "000000",
"id_str": "17977281",
"profile_background_color": "000000",
"listed_count": 41,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 7366,
"description": "'Kevin' a film by Jay Duplass https://t.co/y39b5kTwHM 'Divine Appointment' https://t.co/wAaGZVSvz9",
"friends_count": 2237,
"location": "AustinGuitarPoet",
"profile_link_color": "821E0A",
"profile_image_url": "http://pbs.twimg.com/profile_images/491210641382731776/4e5g-QBd_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/17977281/1401673814",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/253331656/xd8fe13772f9961b1be6775b1fec5c31.jpg",
"screen_name": "gantman",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 1693,
"name": "Kevin Gant",
"notifications": false,
"url": "https://t.co/gaRKTaXsP7",
"created_at": "Mon Dec 08 23:32:41 +0000 2008",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "in",
"created_at": "Wed Feb 03 18:35:55 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "in",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Low and behold, #Kanye's said sorry?! \ud83d\ude33\ud83d\ude33\ud83d\ude33\nhttps://t.co/P2jPddhpZW https://t.co/GOFTue4yag",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694952250439966720,
"favorite_count": 0,
"source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
16,
22
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/P2jPddhpZW",
"indices": [
42,
65
],
"expanded_url": "http://www.thedebrief.co.uk/news/celebrity/kanye-west-wiz-khalifa-twitter-fight-apology-amber-rose-kim-kardashian-20160261967",
"display_url": "thedebrief.co.uk/news/celebrity\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/TheDebrief/status/694952250439966720/photo/1",
"display_url": "pic.twitter.com/GOFTue4yag",
"url": "https://t.co/GOFTue4yag",
"media_url_https": "https://pbs.twimg.com/media/CaTMyXFWYAAvPfX.jpg",
"id_str": "694905408083877888",
"sizes": {
"large": {
"h": 349,
"resize": "fit",
"w": 620
},
"small": {
"h": 191,
"resize": "fit",
"w": 340
},
"medium": {
"h": 337,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
66,
89
],
"type": "photo",
"id": 694905408083877888,
"media_url": "http://pbs.twimg.com/media/CaTMyXFWYAAvPfX.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694952250439966720",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 1140280051,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/672089819900731392/9-4anuHz.jpg",
"verified": true,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/693028376106438656/bYg5MONx_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/ASgNZuctMl",
"indices": [
0,
22
],
"expanded_url": "http://www.thedebrief.co.uk/",
"display_url": "thedebrief.co.uk"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 47283,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "1140280051",
"profile_background_color": "FFFFFF",
"listed_count": 221,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 34686,
"description": "Your go-to place on the Internet. Get #TheDebrief",
"friends_count": 1994,
"location": "London",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/693028376106438656/bYg5MONx_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1140280051/1454065824",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/672089819900731392/9-4anuHz.jpg",
"screen_name": "TheDebrief",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 3342,
"name": "The Debrief",
"notifications": false,
"url": "http://t.co/ASgNZuctMl",
"created_at": "Fri Feb 01 17:28:33 +0000 2013",
"contributors_enabled": false,
"time_zone": "Casablanca",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 18:35:02 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @nlyonne: What happened w #kanye? Is that over?",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694952192734838784,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 1901546563,
"indices": [
3,
11
],
"id_str": "1901546563",
"screen_name": "nlyonne",
"name": "natasha lyonne"
}
],
"hashtags": [
{
"indices": [
29,
35
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 58,
"id_str": "694952192734838784",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "What happened w #kanye? Is that over?",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694678334391726081,
"favorite_count": 228,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
16,
22
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 58,
"id_str": "694678334391726081",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 1901546563,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000081709360/5ba3bb5d6f0ac768a6a33c4e7fa8826a.jpeg",
"verified": true,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000503587502/ef4ae1171b8fb3447087e235be0e7bfd_normal.jpeg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 254908,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "1901546563",
"profile_background_color": "131516",
"listed_count": 966,
"is_translation_enabled": false,
"utc_offset": -25200,
"statuses_count": 6505,
"description": "Not to be confused with Stacy Keach.",
"friends_count": 602,
"location": "New York",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/378800000503587502/ef4ae1171b8fb3447087e235be0e7bfd_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1901546563/1380058302",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000081709360/5ba3bb5d6f0ac768a6a33c4e7fa8826a.jpeg",
"screen_name": "nlyonne",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 24295,
"name": "natasha lyonne",
"notifications": false,
"url": null,
"created_at": "Tue Sep 24 19:29:18 +0000 2013",
"contributors_enabled": false,
"time_zone": "Arizona",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 00:26:36 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 4209180267,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/666575737906941953/k2Z4sYKe_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 6,
"profile_sidebar_border_color": "C0DEED",
"id_str": "4209180267",
"profile_background_color": "C0DEED",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 127,
"description": "",
"friends_count": 48,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/666575737906941953/k2Z4sYKe_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/4209180267/1447758942",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "junkiequeeen",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 423,
"name": "Lisa",
"notifications": false,
"url": null,
"created_at": "Tue Nov 17 11:11:11 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 18:34:48 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#kanye #kim #iFunny https://t.co/CEEpck0oeu https://t.co/tIydFS3U8u",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694951030505627648,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "kanye"
},
{
"indices": [
7,
11
],
"text": "kim"
},
{
"indices": [
12,
19
],
"text": "iFunny"
}
],
"urls": [
{
"url": "https://t.co/CEEpck0oeu",
"indices": [
20,
43
],
"expanded_url": "http://ifunny.co/fun/1NB3Kbkb3",
"display_url": "ifunny.co/fun/1NB3Kbkb3"
}
],
"media": [
{
"expanded_url": "http://twitter.com/Jynecia5/status/694951030505627648/photo/1",
"display_url": "pic.twitter.com/tIydFS3U8u",
"url": "https://t.co/tIydFS3U8u",
"media_url_https": "https://pbs.twimg.com/media/CaT2R7GUcAA2xVN.jpg",
"id_str": "694951030304305152",
"sizes": {
"large": {
"h": 820,
"resize": "fit",
"w": 703
},
"small": {
"h": 396,
"resize": "fit",
"w": 340
},
"medium": {
"h": 699,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
44,
67
],
"type": "photo",
"id": 694951030304305152,
"media_url": "http://pbs.twimg.com/media/CaT2R7GUcAA2xVN.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694951030505627648",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 1190628960,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/657062743564877825/TkJB2OXI_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 389,
"profile_sidebar_border_color": "C0DEED",
"id_str": "1190628960",
"profile_background_color": "C0DEED",
"listed_count": 28,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 14704,
"description": "19yrs old JMHS Graduate San Antonio TX PPP Employeed",
"friends_count": 950,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/657062743564877825/TkJB2OXI_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1190628960/1361834099",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "Jynecia5",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 1681,
"name": "Jynecia Perez",
"notifications": false,
"url": null,
"created_at": "Sun Feb 17 18:28:54 +0000 2013",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 18:30:11 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Are messy album rollouts actually a good thing? https://t.co/zY9x4dCtSQ? via @thefader #Rihanna #Kanye #Future #Music",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694950993889402881,
"favorite_count": 0,
"source": "<a href=\"http://sproutsocial.com\" rel=\"nofollow\">Sprout Social</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 18038269,
"indices": [
77,
86
],
"id_str": "18038269",
"screen_name": "thefader",
"name": "The FADER"
}
],
"hashtags": [
{
"indices": [
87,
95
],
"text": "Rihanna"
},
{
"indices": [
96,
102
],
"text": "Kanye"
},
{
"indices": [
103,
110
],
"text": "Future"
},
{
"indices": [
111,
117
],
"text": "Music"
}
],
"urls": [
{
"url": "https://t.co/zY9x4dCtSQ",
"indices": [
48,
71
],
"expanded_url": "http://bit.ly/1nNvppS",
"display_url": "bit.ly/1nNvppS"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694950993889402881",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 602065117,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/764888171/12679a7773276283ba7e1daf92d38310.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/594277746370482176/8YDs9AfX_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/4mBAFedDtW",
"indices": [
0,
22
],
"expanded_url": "http://wearelisten.com",
"display_url": "wearelisten.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 256,
"profile_sidebar_border_color": "000000",
"id_str": "602065117",
"profile_background_color": "000000",
"listed_count": 23,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 951,
"description": "We're a strategic agency working at the intersection of music & marketing. We use music & sound to strengthen the relationships between a brand and its audience",
"friends_count": 165,
"location": "New York + Sydney",
"profile_link_color": "ABB8C2",
"profile_image_url": "http://pbs.twimg.com/profile_images/594277746370482176/8YDs9AfX_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/602065117/1439526540",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/764888171/12679a7773276283ba7e1daf92d38310.png",
"screen_name": "WeAreListen",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 22,
"name": "Listen",
"notifications": false,
"url": "http://t.co/4mBAFedDtW",
"created_at": "Thu Jun 07 17:45:27 +0000 2012",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 18:30:03 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "(Torontosun):#Kanye #West: 'Waves' not the greatest album of all time : Kanye West has.. https://t.co/OjjYkCMdcd https://t.co/9NKXwlcwJx",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694950426744004608,
"favorite_count": 0,
"source": "<a href=\"http://www.latestcanada.com\" rel=\"nofollow\">Latestcanada.com To Twitter</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
13,
19
],
"text": "Kanye"
},
{
"indices": [
20,
25
],
"text": "West"
}
],
"urls": [
{
"url": "https://t.co/OjjYkCMdcd",
"indices": [
89,
112
],
"expanded_url": "http://www.latestcanada.com/article/2646751509/kanye-west-waves-greatest",
"display_url": "latestcanada.com/article/264675\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/latestcanada/status/694950426744004608/photo/1",
"display_url": "pic.twitter.com/9NKXwlcwJx",
"url": "https://t.co/9NKXwlcwJx",
"media_url_https": "https://pbs.twimg.com/media/CaT1uxaUkAAE7ZN.jpg",
"id_str": "694950426408423424",
"sizes": {
"large": {
"h": 520,
"resize": "fit",
"w": 450
},
"small": {
"h": 392,
"resize": "fit",
"w": 340
},
"medium": {
"h": 520,
"resize": "fit",
"w": 450
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
113,
136
],
"type": "photo",
"id": 694950426408423424,
"media_url": "http://pbs.twimg.com/media/CaT1uxaUkAAE7ZN.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694950426744004608",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 3794670447,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/673162669654962176/22n23zYV_normal.png",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/Lzs1t7QHt0",
"indices": [
0,
22
],
"expanded_url": "http://www.latestcanada.com",
"display_url": "latestcanada.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 229,
"profile_sidebar_border_color": "000000",
"id_str": "3794670447",
"profile_background_color": "000000",
"listed_count": 245,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 49541,
"description": "",
"friends_count": 33,
"location": "",
"profile_link_color": "FF0000",
"profile_image_url": "http://pbs.twimg.com/profile_images/673162669654962176/22n23zYV_normal.png",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "latestcanada",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 0,
"name": "Latestcanada",
"notifications": false,
"url": "http://t.co/Lzs1t7QHt0",
"created_at": "Sun Sep 27 16:47:51 +0000 2015",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 18:27:47 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "I hate when I'm on a flight and I wake up with a water bottle next to me like oh great now I gotta be responsible for this water #kanye",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694948681066377216,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
129,
135
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694948681066377216",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 636190335,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/615915553/wtj3uyoo8a4vaflxyv67.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/694881607824621568/6E6tNbr__normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 241,
"profile_sidebar_border_color": "C0DEED",
"id_str": "636190335",
"profile_background_color": "C0DEED",
"listed_count": 14,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 989,
"description": "@ibminteractive consultant: User Experience, Social Business, Mobile Payments, Banking, Financial Services. Views are my own!",
"friends_count": 398,
"location": "London",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/694881607824621568/6E6tNbr__normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/636190335/1454508020",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/615915553/wtj3uyoo8a4vaflxyv67.jpeg",
"screen_name": "StephanieJLove",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 17,
"name": "Stephanie Love",
"notifications": false,
"url": null,
"created_at": "Sun Jul 15 11:18:08 +0000 2012",
"contributors_enabled": false,
"time_zone": "London",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 18:20:51 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @SHINZO_PARIS: #YeezyDays By @SHINZO_PARIS : https://t.co/Rtde8prZwe #Yeezy #YEEZYBOOST #YeezySeason #KanyeWest #Kanye https://t.co/bc8j\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694948657750216707,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 4210480643,
"indices": [
3,
16
],
"id_str": "4210480643",
"screen_name": "SHINZO_PARIS",
"name": "SHINZO Paris"
},
{
"id": 4210480643,
"indices": [
32,
45
],
"id_str": "4210480643",
"screen_name": "SHINZO_PARIS",
"name": "SHINZO Paris"
}
],
"hashtags": [
{
"indices": [
18,
28
],
"text": "YeezyDays"
},
{
"indices": [
72,
78
],
"text": "Yeezy"
},
{
"indices": [
79,
90
],
"text": "YEEZYBOOST"
},
{
"indices": [
91,
103
],
"text": "YeezySeason"
},
{
"indices": [
104,
114
],
"text": "KanyeWest"
},
{
"indices": [
115,
121
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/Rtde8prZwe",
"indices": [
48,
71
],
"expanded_url": "http://bit.ly/20Ge7Jj",
"display_url": "bit.ly/20Ge7Jj"
}
],
"media": [
{
"source_user_id": 4210480643,
"source_status_id_str": "694943100456849408",
"expanded_url": "http://twitter.com/SHINZO_PARIS/status/694943100456849408/video/1",
"display_url": "pic.twitter.com/bc8jOOXdsl",
"url": "https://t.co/bc8jOOXdsl",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/694942675334729728/pu/img/NJ1MxdcUyaHRvdPo.jpg",
"source_user_id_str": "4210480643",
"source_status_id": 694943100456849408,
"id_str": "694942675334729728",
"sizes": {
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"large": {
"h": 720,
"resize": "fit",
"w": 720
},
"medium": {
"h": 600,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
122,
140
],
"type": "photo",
"id": 694942675334729728,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/694942675334729728/pu/img/NJ1MxdcUyaHRvdPo.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694948657750216707",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "#YeezyDays By @SHINZO_PARIS : https://t.co/Rtde8prZwe #Yeezy #YEEZYBOOST #YeezySeason #KanyeWest #Kanye https://t.co/bc8jOOXdsl",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694943100456849408,
"favorite_count": 2,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 4210480643,
"indices": [
14,
27
],
"id_str": "4210480643",
"screen_name": "SHINZO_PARIS",
"name": "SHINZO Paris"
}
],
"hashtags": [
{
"indices": [
0,
10
],
"text": "YeezyDays"
},
{
"indices": [
54,
60
],
"text": "Yeezy"
},
{
"indices": [
61,
72
],
"text": "YEEZYBOOST"
},
{
"indices": [
73,
85
],
"text": "YeezySeason"
},
{
"indices": [
86,
96
],
"text": "KanyeWest"
},
{
"indices": [
97,
103
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/Rtde8prZwe",
"indices": [
30,
53
],
"expanded_url": "http://bit.ly/20Ge7Jj",
"display_url": "bit.ly/20Ge7Jj"
}
],
"media": [
{
"expanded_url": "http://twitter.com/SHINZO_PARIS/status/694943100456849408/video/1",
"display_url": "pic.twitter.com/bc8jOOXdsl",
"url": "https://t.co/bc8jOOXdsl",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/694942675334729728/pu/img/NJ1MxdcUyaHRvdPo.jpg",
"id_str": "694942675334729728",
"sizes": {
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"large": {
"h": 720,
"resize": "fit",
"w": 720
},
"medium": {
"h": 600,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
104,
127
],
"type": "photo",
"id": 694942675334729728,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/694942675334729728/pu/img/NJ1MxdcUyaHRvdPo.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694943100456849408",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 4210480643,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/683266727908622336/Ho7XlJyQ_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/B3gi88XZRh",
"indices": [
0,
23
],
"expanded_url": "https://www.instagram.com/shinzo_paris/",
"display_url": "instagram.com/shinzo_paris/"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 77,
"profile_sidebar_border_color": "000000",
"id_str": "4210480643",
"profile_background_color": "000000",
"listed_count": 5,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 59,
"description": "Welcome to SHINZO Paris, the best dedicated areas to sport in the heart of Paris.\n27, 37, 39 rue Etienne Marcel, 75001 Paris\n#SHINZO #SHINZOParis",
"friends_count": 62,
"location": "Paris, Ile-de-France",
"profile_link_color": "ABB8C2",
"profile_image_url": "http://pbs.twimg.com/profile_images/683266727908622336/Ho7XlJyQ_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/4210480643/1454493423",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "SHINZO_PARIS",
"lang": "fr",
"profile_background_tile": false,
"favourites_count": 0,
"name": "SHINZO Paris",
"notifications": false,
"url": "https://t.co/B3gi88XZRh",
"created_at": "Tue Nov 17 14:45:59 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 17:58:41 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2935084563,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/684799191718191108/62KNNcI2_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 560,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2935084563",
"profile_background_color": "C0DEED",
"listed_count": 8,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 30836,
"description": "N | Arcades",
"friends_count": 165,
"location": "Dijon",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/684799191718191108/62KNNcI2_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2935084563/1454524009",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "Baptiste_Hy",
"lang": "fr",
"profile_background_tile": false,
"favourites_count": 25789,
"name": "92i",
"notifications": false,
"url": null,
"created_at": "Sun Dec 21 11:47:39 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 18:20:46 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#kanye https://t.co/08s4S0ipFr",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694947834164973568,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "kanye"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/CarissaBlades/status/694947834164973568/photo/1",
"display_url": "pic.twitter.com/08s4S0ipFr",
"url": "https://t.co/08s4S0ipFr",
"media_url_https": "https://pbs.twimg.com/media/CaTzX13UMAA7EWo.jpg",
"id_str": "694947833443528704",
"sizes": {
"large": {
"h": 439,
"resize": "fit",
"w": 599
},
"small": {
"h": 249,
"resize": "fit",
"w": 340
},
"medium": {
"h": 439,
"resize": "fit",
"w": 599
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
7,
30
],
"type": "photo",
"id": 694947833443528704,
"media_url": "http://pbs.twimg.com/media/CaTzX13UMAA7EWo.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694947834164973568",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 24772916,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/670358111/f59edc8ed5ddbe3343bee02aaf0c073f.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/540232592625127425/iInciN7m_normal.jpeg",
"profile_sidebar_fill_color": "EDFAE6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/J9l3Xa1buu",
"indices": [
0,
22
],
"expanded_url": "http://www.carissablades.com",
"display_url": "carissablades.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 1769,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "24772916",
"profile_background_color": "9AE4E8",
"listed_count": 25,
"is_translation_enabled": false,
"utc_offset": -25200,
"statuses_count": 4461,
"description": "My dimples are so adorable that kittens email each other youtube videos of me!",
"friends_count": 577,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/540232592625127425/iInciN7m_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/24772916/1450935439",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/670358111/f59edc8ed5ddbe3343bee02aaf0c073f.jpeg",
"screen_name": "CarissaBlades",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 445,
"name": "Carissa Blades",
"notifications": false,
"url": "http://t.co/J9l3Xa1buu",
"created_at": "Mon Mar 16 21:24:37 +0000 2009",
"contributors_enabled": false,
"time_zone": "Mountain Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 18:17:29 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @nlyonne: What happened w #kanye? Is that over?",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694947395260563457,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 1901546563,
"indices": [
3,
11
],
"id_str": "1901546563",
"screen_name": "nlyonne",
"name": "natasha lyonne"
}
],
"hashtags": [
{
"indices": [
29,
35
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 58,
"id_str": "694947395260563457",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "What happened w #kanye? Is that over?",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694678334391726081,
"favorite_count": 228,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
16,
22
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 58,
"id_str": "694678334391726081",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 1901546563,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000081709360/5ba3bb5d6f0ac768a6a33c4e7fa8826a.jpeg",
"verified": true,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000503587502/ef4ae1171b8fb3447087e235be0e7bfd_normal.jpeg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 254908,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "1901546563",
"profile_background_color": "131516",
"listed_count": 966,
"is_translation_enabled": false,
"utc_offset": -25200,
"statuses_count": 6505,
"description": "Not to be confused with Stacy Keach.",
"friends_count": 602,
"location": "New York",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/378800000503587502/ef4ae1171b8fb3447087e235be0e7bfd_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1901546563/1380058302",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000081709360/5ba3bb5d6f0ac768a6a33c4e7fa8826a.jpeg",
"screen_name": "nlyonne",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 24295,
"name": "natasha lyonne",
"notifications": false,
"url": null,
"created_at": "Tue Sep 24 19:29:18 +0000 2013",
"contributors_enabled": false,
"time_zone": "Arizona",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 00:26:36 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 927944390,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/518667345737183232/vTHRw4Wn.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/616957939400749056/tqbWl9Kv_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/QEUaWm5Auz",
"indices": [
0,
23
],
"expanded_url": "http://Instagram.com/loveroflyonne/",
"display_url": "Instagram.com/loveroflyonne/"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 990,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "927944390",
"profile_background_color": "C0DEED",
"listed_count": 12,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 14464,
"description": "Anything with either Natasha Lyonne, strong female characters and a female led show, is basically what I enjoy in life",
"friends_count": 668,
"location": "In Guly's heart",
"profile_link_color": "3B94D9",
"profile_image_url": "http://pbs.twimg.com/profile_images/616957939400749056/tqbWl9Kv_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/927944390/1438684363",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/518667345737183232/vTHRw4Wn.png",
"screen_name": "LoverOfLyonne",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 13623,
"name": "Louis",
"notifications": false,
"url": "https://t.co/QEUaWm5Auz",
"created_at": "Mon Nov 05 16:35:46 +0000 2012",
"contributors_enabled": false,
"time_zone": "Casablanca",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 18:15:45 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Kanye West Will Record With Taylor Swift, Says She Supported His Grammy Stage Crash\n\nhttps://t.co/3YodXXkoSa\n\n#kanye https://t.co/l87VBerR3J",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694947287936663553,
"favorite_count": 0,
"source": "<a href=\"https://www.socialoomph.com\" rel=\"nofollow\">SocialOomph</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
110,
116
],
"text": "kanye"
}
],
"urls": [
{
"url": "https://t.co/3YodXXkoSa",
"indices": [
85,
108
],
"expanded_url": "http://bit.ly/1DoEQNd",
"display_url": "bit.ly/1DoEQNd"
}
],
"media": [
{
"expanded_url": "http://twitter.com/poproxx1/status/694947287936663553/photo/1",
"display_url": "pic.twitter.com/l87VBerR3J",
"url": "https://t.co/l87VBerR3J",
"media_url_https": "https://pbs.twimg.com/media/CaTy4DhWwAAzgNC.jpg",
"id_str": "694947287353704448",
"sizes": {
"small": {
"h": 226,
"resize": "fit",
"w": 340
},
"large": {
"h": 413,
"resize": "fit",
"w": 620
},
"medium": {
"h": 399,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
117,
140
],
"type": "photo",
"id": 694947287353704448,
"media_url": "http://pbs.twimg.com/media/CaTy4DhWwAAzgNC.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694947287936663553",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3192600423,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/590643781977800704/pXrzvRLc.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/590641590009470976/WcZnWIqK_normal.png",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/oSCXSXOL99",
"indices": [
0,
22
],
"expanded_url": "http://poproxx.us",
"display_url": "poproxx.us"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 619,
"profile_sidebar_border_color": "000000",
"id_str": "3192600423",
"profile_background_color": "000000",
"listed_count": 100,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 158638,
"description": "Get ur Poproxx off",
"friends_count": 595,
"location": "Tennessee, USA",
"profile_link_color": "000000",
"profile_image_url": "http://pbs.twimg.com/profile_images/590641590009470976/WcZnWIqK_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3192600423/1429657388",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/590643781977800704/pXrzvRLc.png",
"screen_name": "poproxx1",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 0,
"name": "Poproxx",
"notifications": false,
"url": "http://t.co/oSCXSXOL99",
"created_at": "Tue Apr 21 22:20:21 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 18:15:19 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "@TomHall was there no-one else? ...at all? Like....anyone? #Oprah?...#tomcruise?...A #kardashian?.... #ParisHilton?...#Kanye?...#DrPhil?",
"is_quote_status": false,
"in_reply_to_status_id": 694939925523910657,
"id": 694947208227983360,
"favorite_count": 1,
"source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 14993272,
"indices": [
0,
8
],
"id_str": "14993272",
"screen_name": "TomHall",
"name": "Tom Hall"
}
],
"hashtags": [
{
"indices": [
59,
65
],
"text": "Oprah"
},
{
"indices": [
69,
79
],
"text": "tomcruise"
},
{
"indices": [
85,
96
],
"text": "kardashian"
},
{
"indices": [
102,
114
],
"text": "ParisHilton"
},
{
"indices": [
118,
124
],
"text": "Kanye"
},
{
"indices": [
128,
135
],
"text": "DrPhil"
}
],
"urls": []
},
"in_reply_to_screen_name": "TomHall",
"in_reply_to_user_id": 14993272,
"retweet_count": 0,
"id_str": "694947208227983360",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 246049184,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/458621076528844801/R7Ew43GR.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/685583988543455232/hd9IMJOm_normal.jpg",
"profile_sidebar_fill_color": "F6FFD1",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/IIRylT9O31",
"indices": [
0,
23
],
"expanded_url": "http://www.thistledowndonkeys.com",
"display_url": "thistledowndonkeys.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 212,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "246049184",
"profile_background_color": "8C62CC",
"listed_count": 7,
"is_translation_enabled": false,
"utc_offset": -25200,
"statuses_count": 1839,
"description": "Displaced Brit living on the Canadian Prairie, mother of three, wife of one. Owner/operator of Thistledown Donkeys and Country Whiskers Siamese Cats.",
"friends_count": 308,
"location": "Lethbridge, AB",
"profile_link_color": "587A42",
"profile_image_url": "http://pbs.twimg.com/profile_images/685583988543455232/hd9IMJOm_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/246049184/1452744775",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/458621076528844801/R7Ew43GR.jpeg",
"screen_name": "_Thistledown_",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 47,
"name": "Janet Row",
"notifications": false,
"url": "https://t.co/IIRylT9O31",
"created_at": "Wed Feb 02 01:00:17 +0000 2011",
"contributors_enabled": false,
"time_zone": "Mountain Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": "14993272",
"lang": "en",
"created_at": "Wed Feb 03 18:15:00 +0000 2016",
"in_reply_to_status_id_str": "694939925523910657",
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#AllHiphop #News \u2013 Did Wiz #Khalifa Get His #Rolex #Stolen By A #Kanye #West Fan? https://t.co/1qO3PKVwLO #random",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694945954890412034,
"favorite_count": 0,
"source": "<a href=\"http://www.google.com/\" rel=\"nofollow\">Google</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
10
],
"text": "AllHiphop"
},
{
"indices": [
11,
16
],
"text": "News"
},
{
"indices": [
27,
35
],
"text": "Khalifa"
},
{
"indices": [
44,
50
],
"text": "Rolex"
},
{
"indices": [
51,
58
],
"text": "Stolen"
},
{
"indices": [
64,
70
],
"text": "Kanye"
},
{
"indices": [
71,
76
],
"text": "West"
},
{
"indices": [
106,
113
],
"text": "random"
}
],
"urls": [
{
"url": "https://t.co/1qO3PKVwLO",
"indices": [
82,
105
],
"expanded_url": "http://goo.gl/fb/74skcH",
"display_url": "goo.gl/fb/74skcH"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694945954890412034",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 197315562,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1134920948/hiphop-conspiracy_normal.jpg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/mkxNacCF0q",
"indices": [
0,
22
],
"expanded_url": "http://hiphopconspiracy.com/",
"display_url": "hiphopconspiracy.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 82,
"profile_sidebar_border_color": "EEEEEE",
"id_str": "197315562",
"profile_background_color": "131516",
"listed_count": 26,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 5055,
"description": "In search of the truth!!",
"friends_count": 159,
"location": "Da Big Apple....",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/1134920948/hiphop-conspiracy_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif",
"screen_name": "hhconspiracy",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 0,
"name": "HH Conspiracy",
"notifications": false,
"url": "http://t.co/mkxNacCF0q",
"created_at": "Fri Oct 01 05:03:01 +0000 2010",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 18:10:01 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#Kanye #Fingering https://t.co/crWRwZ9lJ4",
"is_quote_status": true,
"in_reply_to_status_id": null,
"id": 694945853430239233,
"favorite_count": 0,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "Kanye"
},
{
"indices": [
7,
17
],
"text": "Fingering"
}
],
"urls": [
{
"url": "https://t.co/crWRwZ9lJ4",
"indices": [
18,
41
],
"expanded_url": "https://twitter.com/Rue89/status/694883479268397056",
"display_url": "twitter.com/Rue89/status/6\u2026"
}
]
},
"quoted_status_id": 694883479268397056,
"retweeted": false,
"coordinates": null,
"quoted_status": {
"contributors": null,
"truncated": false,
"text": "[Vigie] Radicalisation des jeunes\u00a0: \u00ab\u00a095% des cas li\u00e9s \u00e0 un contact humain\u00a0\u00bb https://t.co/eFRKfXcIrY",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694883479268397056,
"favorite_count": 5,
"source": "<a href=\"http://twitterfeed.com\" rel=\"nofollow\">twitterfeed</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [],
"urls": [
{
"url": "https://t.co/eFRKfXcIrY",
"indices": [
77,
100
],
"expanded_url": "http://bit.ly/1R1ONdZ",
"display_url": "bit.ly/1R1ONdZ"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 10,
"id_str": "694883479268397056",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 19341180,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif",
"verified": true,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1653666585/avatar_twitter_rue89_normal.png",
"profile_sidebar_fill_color": "FFFFFF",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/bZ9LjtBGe2",
"indices": [
0,
22
],
"expanded_url": "http://www.rue89.com",
"display_url": "rue89.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 963984,
"profile_sidebar_border_color": "EEEEEE",
"id_str": "19341180",
"profile_background_color": "B2DFDA",
"listed_count": 11002,
"is_translation_enabled": false,
"utc_offset": 3600,
"statuses_count": 41427,
"description": "Les br\u00e8ves tr\u00e8s br\u00e8ves de Rue89, site d'information et de d\u00e9bat sur l'actualit\u00e9, ind\u00e9pendant et participatif",
"friends_count": 243,
"location": "Paris, France",
"profile_link_color": "93A644",
"profile_image_url": "http://pbs.twimg.com/profile_images/1653666585/avatar_twitter_rue89_normal.png",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/19341180/1445519630",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif",
"screen_name": "Rue89",
"lang": "fr",
"profile_background_tile": false,
"favourites_count": 32,
"name": "Rue89",
"notifications": false,
"url": "http://t.co/bZ9LjtBGe2",
"created_at": "Thu Jan 22 14:55:35 +0000 2009",
"contributors_enabled": false,
"time_zone": "Paris",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "fr",
"created_at": "Wed Feb 03 14:01:46 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694945853430239233",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 297007365,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1352990088/41BC03KZ1CL._SL500_AA300__normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/i7C443LW4N",
"indices": [
0,
22
],
"expanded_url": "http://www.facebook.com/TheBestKeptCafe",
"display_url": "facebook.com/TheBestKeptCafe"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 217,
"profile_sidebar_border_color": "C0DEED",
"id_str": "297007365",
"profile_background_color": "C0DEED",
"listed_count": 8,
"is_translation_enabled": false,
"utc_offset": 3600,
"statuses_count": 5342,
"description": "Compte officiel des barmen de The Best Kept Caf\u00e9. Hip Hop, caf\u00e9 et discussions de comptoir. Qu'est ce qu'on vous sert ?",
"friends_count": 203,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/1352990088/41BC03KZ1CL._SL500_AA300__normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "thebestkeptcafe",
"lang": "fr",
"profile_background_tile": false,
"favourites_count": 20,
"name": "The Bartenders",
"notifications": false,
"url": "http://t.co/i7C443LW4N",
"created_at": "Wed May 11 19:30:39 +0000 2011",
"contributors_enabled": false,
"time_zone": "Paris",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 18:09:37 +0000 2016",
"quoted_status_id_str": "694883479268397056",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @nihilist_arbys: Yo #kanye! Arbys has beef too! The beef of millions of cow carcasses that will, like you, be forgotten in a godless unf\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694945753626763266,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 2983295300,
"indices": [
3,
18
],
"id_str": "2983295300",
"screen_name": "nihilist_arbys",
"name": "Nihilist Arby's"
}
],
"hashtags": [
{
"indices": [
23,
29
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3258,
"id_str": "694945753626763266",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Yo #kanye! Arbys has beef too! The beef of millions of cow carcasses that will, like you, be forgotten in a godless unfeeling void\nEat arbys",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 692449566482915328,
"favorite_count": 4864,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
3,
9
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3258,
"id_str": "692449566482915328",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 2983295300,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/555493486997151744/2UdQtjdE_normal.png",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/Vv2y8l6sOv",
"indices": [
0,
22
],
"expanded_url": "http://arbys.com",
"display_url": "arbys.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 174552,
"profile_sidebar_border_color": "000000",
"id_str": "2983295300",
"profile_background_color": "000000",
"listed_count": 943,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 483,
"description": "Officially, I have nothing to do with arby's. Unofficially, everything is nothing. nihilistarbys@gmail.com",
"friends_count": 0,
"location": "arby's",
"profile_link_color": "DD2E44",
"profile_image_url": "http://pbs.twimg.com/profile_images/555493486997151744/2UdQtjdE_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2983295300/1421278215",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "nihilist_arbys",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 0,
"name": "Nihilist Arby's",
"notifications": false,
"url": "http://t.co/Vv2y8l6sOv",
"created_at": "Wed Jan 14 22:33:08 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Jan 27 20:50:16 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 273576650,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/691415436429230080/0WbgfbGi_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 206,
"profile_sidebar_border_color": "C0DEED",
"id_str": "273576650",
"profile_background_color": "C0DEED",
"listed_count": 7,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 2294,
"description": "Fitness industry professional. Sports, stand-up comedy & live music lover. Current events junkie.",
"friends_count": 539,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/691415436429230080/0WbgfbGi_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/273576650/1451357441",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "MikeDSully",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 997,
"name": "Mike Sullivan",
"notifications": false,
"url": null,
"created_at": "Mon Mar 28 19:17:44 +0000 2011",
"contributors_enabled": false,
"time_zone": "Quito",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 18:09:13 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#kanye #kim #iFunny https://t.co/iFJoJFcpxI https://t.co/juSRonbYaL",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694945057372184576,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "kanye"
},
{
"indices": [
7,
11
],
"text": "kim"
},
{
"indices": [
12,
19
],
"text": "iFunny"
}
],
"urls": [
{
"url": "https://t.co/iFJoJFcpxI",
"indices": [
20,
43
],
"expanded_url": "http://ifunny.co/fun/1NB3Kbkb3",
"display_url": "ifunny.co/fun/1NB3Kbkb3"
}
],
"media": [
{
"expanded_url": "http://twitter.com/_BriannaWalker_/status/694945057372184576/photo/1",
"display_url": "pic.twitter.com/juSRonbYaL",
"url": "https://t.co/juSRonbYaL",
"media_url_https": "https://pbs.twimg.com/media/CaTw2OkVAAAXloZ.jpg",
"id_str": "694945056935968768",
"sizes": {
"large": {
"h": 820,
"resize": "fit",
"w": 703
},
"small": {
"h": 396,
"resize": "fit",
"w": 340
},
"medium": {
"h": 699,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
44,
67
],
"type": "photo",
"id": 694945056935968768,
"media_url": "http://pbs.twimg.com/media/CaTw2OkVAAAXloZ.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694945057372184576",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2331180745,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/691134576777924608/mRKhk4jv_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 269,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2331180745",
"profile_background_color": "C0DEED",
"listed_count": 10,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 1840,
"description": "I learned to just roll with it. \u2600\ufe0f 6-18-14\u2764\ufe0f",
"friends_count": 318,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/691134576777924608/mRKhk4jv_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2331180745/1454364047",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "_BriannaWalker_",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 850,
"name": "Brianna Banana\u2728",
"notifications": false,
"url": null,
"created_at": "Fri Feb 07 02:41:35 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 18:06:27 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Yeezy black on army green.. Damn. #allyeezy #kanye #kanyewest #yeezyseason #urbanwear # by allyeezyclothes https://t.co/Qdfswq5Pod",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694944289068093441,
"favorite_count": 0,
"source": "<a href=\"http://ifttt.com\" rel=\"nofollow\">IFTTT</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
34,
43
],
"text": "allyeezy"
},
{
"indices": [
44,
50
],
"text": "kanye"
},
{
"indices": [
51,
61
],
"text": "kanyewest"
},
{
"indices": [
62,
74
],
"text": "yeezyseason"
},
{
"indices": [
75,
85
],
"text": "urbanwear"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/DeezaSunglasses/status/694944289068093441/photo/1",
"display_url": "pic.twitter.com/Qdfswq5Pod",
"url": "https://t.co/Qdfswq5Pod",
"media_url_https": "https://pbs.twimg.com/media/CaTwJhAWAAAb1YQ.jpg",
"id_str": "694944288791199744",
"sizes": {
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"large": {
"h": 430,
"resize": "fit",
"w": 430
},
"medium": {
"h": 430,
"resize": "fit",
"w": 430
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
107,
130
],
"type": "photo",
"id": 694944288791199744,
"media_url": "http://pbs.twimg.com/media/CaTwJhAWAAAb1YQ.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694944289068093441",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 4342046543,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/681930519152619524/O4FX8h-k_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 241,
"profile_sidebar_border_color": "000000",
"id_str": "4342046543",
"profile_background_color": "000000",
"listed_count": 159,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 4617,
"description": "Urban Tech Surfers Tribe",
"friends_count": 216,
"location": "",
"profile_link_color": "FA743E",
"profile_image_url": "http://pbs.twimg.com/profile_images/681930519152619524/O4FX8h-k_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/4342046543/1448998971",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "DeezaSunglasses",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 4,
"name": "DeezaSun",
"notifications": false,
"url": null,
"created_at": "Tue Dec 01 17:39:23 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 18:03:24 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "How To Rap's Greatest Hits: #RapFlow #HipHop #HowToRap #UnsignedHype #Eminem #Drake #Kanye #Kendrick https://t.co/3L10OYz937",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694943738607624192,
"favorite_count": 0,
"source": "<a href=\"http://bufferapp.com\" rel=\"nofollow\">Buffer</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
28,
36
],
"text": "RapFlow"
},
{
"indices": [
37,
44
],
"text": "HipHop"
},
{
"indices": [
45,
54
],
"text": "HowToRap"
},
{
"indices": [
55,
68
],
"text": "UnsignedHype"
},
{
"indices": [
69,
76
],
"text": "Eminem"
},
{
"indices": [
77,
83
],
"text": "Drake"
},
{
"indices": [
84,
90
],
"text": "Kanye"
},
{
"indices": [
91,
100
],
"text": "Kendrick"
}
],
"urls": [
{
"url": "https://t.co/3L10OYz937",
"indices": [
101,
124
],
"expanded_url": "http://buff.ly/1PTJrCH",
"display_url": "buff.ly/1PTJrCH"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694943738607624192",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2542152678,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/474733282337120256/2TVToB6w_normal.jpeg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/vHejlPZdMt",
"indices": [
0,
22
],
"expanded_url": "http://www.howtorapdrew.com",
"display_url": "howtorapdrew.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 765,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2542152678",
"profile_background_color": "C0DEED",
"listed_count": 4,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 1403,
"description": "The #1 Rap Tutorial Business in THE INDUSTRY... songwriting, flow, freestyle, vocal tone - IT'S ALL HERE... Join us on THE JOURNEY",
"friends_count": 119,
"location": "Los Angeles, CA",
"profile_link_color": "000000",
"profile_image_url": "http://pbs.twimg.com/profile_images/474733282337120256/2TVToB6w_normal.jpeg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2542152678/1402020197",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "HowToRapDrew",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 196,
"name": "Drew Morisey",
"notifications": false,
"url": "http://t.co/vHejlPZdMt",
"created_at": "Mon Jun 02 21:19:10 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 18:01:13 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#mood #Kanye #wizkhalifa #kimkardashian #amberrose #hilarious https://t.co/4xaJrp9ahq",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694943725542326272,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
5
],
"text": "mood"
},
{
"indices": [
6,
12
],
"text": "Kanye"
},
{
"indices": [
13,
24
],
"text": "wizkhalifa"
},
{
"indices": [
25,
39
],
"text": "kimkardashian"
},
{
"indices": [
40,
50
],
"text": "amberrose"
},
{
"indices": [
51,
61
],
"text": "hilarious"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/RickLavaL/status/694943725542326272/video/1",
"display_url": "pic.twitter.com/4xaJrp9ahq",
"url": "https://t.co/4xaJrp9ahq",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/694943674485075968/pu/img/t4dF0qfk03kNcgv1.jpg",
"id_str": "694943674485075968",
"sizes": {
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"large": {
"h": 640,
"resize": "fit",
"w": 640
},
"medium": {
"h": 600,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
62,
85
],
"type": "photo",
"id": 694943674485075968,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/694943674485075968/pu/img/t4dF0qfk03kNcgv1.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694943725542326272",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 21164472,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/434616544/The_stain_twitter_copy.png",
"verified": false,
"profile_text_color": "666666",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/691323947879682048/Nn3U_nx4_normal.jpg",
"profile_sidebar_fill_color": "252429",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/bva2sSEAyj",
"indices": [
0,
23
],
"expanded_url": "http://www.instagram.com/ricklaval",
"display_url": "instagram.com/ricklaval"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 262,
"profile_sidebar_border_color": "181A1E",
"id_str": "21164472",
"profile_background_color": "1A1B1F",
"listed_count": 26,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 15808,
"description": "Filmmaker, Photographer, Graphic Designer, & WebMaster... Exploit the strengths of the tools you already have and work around your limitations... @lavalmetro",
"friends_count": 352,
"location": "chicago",
"profile_link_color": "2FC2EF",
"profile_image_url": "http://pbs.twimg.com/profile_images/691323947879682048/Nn3U_nx4_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/21164472/1359896957",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/434616544/The_stain_twitter_copy.png",
"screen_name": "RickLavaL",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 189,
"name": "Rickey Evans",
"notifications": false,
"url": "https://t.co/bva2sSEAyj",
"created_at": "Wed Feb 18 03:23:17 +0000 2009",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 18:01:10 +0000 2016",
"in_reply_to_status_id_str": null,
"place": {
"country_code": "US",
"url": "https://api.twitter.com/1.1/geo/id/1d9a5370a355ab0c.json",
"country": "United States",
"place_type": "city",
"bounding_box": {
"type": "Polygon",
"coordinates": [
[
[
-87.940033,
41.644102
],
[
-87.523993,
41.644102
],
[
-87.523993,
42.0230669
],
[
-87.940033,
42.0230669
]
]
]
},
"contained_within": [],
"full_name": "Chicago, IL",
"attributes": {},
"id": "1d9a5370a355ab0c",
"name": "Chicago"
},
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Runaway fast as you can #KanyeWest #Kanye",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694943679111380992,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
24,
34
],
"text": "KanyeWest"
},
{
"indices": [
35,
41
],
"text": "Kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694943679111380992",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3347609482,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/681509543801688064/lX4aU-Am_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/dvPgFiU6is",
"indices": [
0,
23
],
"expanded_url": "http://youtu.be/eRLJscAlk1M",
"display_url": "youtu.be/eRLJscAlk1M"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 37,
"profile_sidebar_border_color": "C0DEED",
"id_str": "3347609482",
"profile_background_color": "C0DEED",
"listed_count": 2,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 130,
"description": "Romans 10:13. '19. gold softball. got it memorized?",
"friends_count": 63,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/681509543801688064/lX4aU-Am_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3347609482/1451319512",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "sammmannnthaa",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 72,
"name": "samantha",
"notifications": false,
"url": "https://t.co/dvPgFiU6is",
"created_at": "Sat Jun 27 13:48:59 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 18:00:59 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @SHINZO_PARIS: #YeezyDays By @SHINZO_PARIS : https://t.co/Rtde8prZwe #Yeezy #YEEZYBOOST #YeezySeason #KanyeWest #Kanye https://t.co/bc8j\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694943236478144512,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 4210480643,
"indices": [
3,
16
],
"id_str": "4210480643",
"screen_name": "SHINZO_PARIS",
"name": "SHINZO Paris"
},
{
"id": 4210480643,
"indices": [
32,
45
],
"id_str": "4210480643",
"screen_name": "SHINZO_PARIS",
"name": "SHINZO Paris"
}
],
"hashtags": [
{
"indices": [
18,
28
],
"text": "YeezyDays"
},
{
"indices": [
72,
78
],
"text": "Yeezy"
},
{
"indices": [
79,
90
],
"text": "YEEZYBOOST"
},
{
"indices": [
91,
103
],
"text": "YeezySeason"
},
{
"indices": [
104,
114
],
"text": "KanyeWest"
},
{
"indices": [
115,
121
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/Rtde8prZwe",
"indices": [
48,
71
],
"expanded_url": "http://bit.ly/20Ge7Jj",
"display_url": "bit.ly/20Ge7Jj"
}
],
"media": [
{
"source_user_id": 4210480643,
"source_status_id_str": "694943100456849408",
"expanded_url": "http://twitter.com/SHINZO_PARIS/status/694943100456849408/video/1",
"display_url": "pic.twitter.com/bc8jOOXdsl",
"url": "https://t.co/bc8jOOXdsl",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/694942675334729728/pu/img/NJ1MxdcUyaHRvdPo.jpg",
"source_user_id_str": "4210480643",
"source_status_id": 694943100456849408,
"id_str": "694942675334729728",
"sizes": {
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"large": {
"h": 720,
"resize": "fit",
"w": 720
},
"medium": {
"h": 600,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
122,
140
],
"type": "photo",
"id": 694942675334729728,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/694942675334729728/pu/img/NJ1MxdcUyaHRvdPo.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694943236478144512",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "#YeezyDays By @SHINZO_PARIS : https://t.co/Rtde8prZwe #Yeezy #YEEZYBOOST #YeezySeason #KanyeWest #Kanye https://t.co/bc8jOOXdsl",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694943100456849408,
"favorite_count": 2,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 4210480643,
"indices": [
14,
27
],
"id_str": "4210480643",
"screen_name": "SHINZO_PARIS",
"name": "SHINZO Paris"
}
],
"hashtags": [
{
"indices": [
0,
10
],
"text": "YeezyDays"
},
{
"indices": [
54,
60
],
"text": "Yeezy"
},
{
"indices": [
61,
72
],
"text": "YEEZYBOOST"
},
{
"indices": [
73,
85
],
"text": "YeezySeason"
},
{
"indices": [
86,
96
],
"text": "KanyeWest"
},
{
"indices": [
97,
103
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/Rtde8prZwe",
"indices": [
30,
53
],
"expanded_url": "http://bit.ly/20Ge7Jj",
"display_url": "bit.ly/20Ge7Jj"
}
],
"media": [
{
"expanded_url": "http://twitter.com/SHINZO_PARIS/status/694943100456849408/video/1",
"display_url": "pic.twitter.com/bc8jOOXdsl",
"url": "https://t.co/bc8jOOXdsl",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/694942675334729728/pu/img/NJ1MxdcUyaHRvdPo.jpg",
"id_str": "694942675334729728",
"sizes": {
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"large": {
"h": 720,
"resize": "fit",
"w": 720
},
"medium": {
"h": 600,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
104,
127
],
"type": "photo",
"id": 694942675334729728,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/694942675334729728/pu/img/NJ1MxdcUyaHRvdPo.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694943100456849408",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 4210480643,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/683266727908622336/Ho7XlJyQ_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/B3gi88XZRh",
"indices": [
0,
23
],
"expanded_url": "https://www.instagram.com/shinzo_paris/",
"display_url": "instagram.com/shinzo_paris/"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 77,
"profile_sidebar_border_color": "000000",
"id_str": "4210480643",
"profile_background_color": "000000",
"listed_count": 5,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 59,
"description": "Welcome to SHINZO Paris, the best dedicated areas to sport in the heart of Paris.\n27, 37, 39 rue Etienne Marcel, 75001 Paris\n#SHINZO #SHINZOParis",
"friends_count": 62,
"location": "Paris, Ile-de-France",
"profile_link_color": "ABB8C2",
"profile_image_url": "http://pbs.twimg.com/profile_images/683266727908622336/Ho7XlJyQ_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/4210480643/1454493423",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "SHINZO_PARIS",
"lang": "fr",
"profile_background_tile": false,
"favourites_count": 0,
"name": "SHINZO Paris",
"notifications": false,
"url": "https://t.co/B3gi88XZRh",
"created_at": "Tue Nov 17 14:45:59 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 17:58:41 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 113418408,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/602947331172925440/zJmm9HCA.jpg",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/693738638228754432/KUIF8fWA_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/pseKwdxUOk",
"indices": [
0,
23
],
"expanded_url": "http://french-sneakerhead.fr",
"display_url": "french-sneakerhead.fr"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 509,
"profile_sidebar_border_color": "000000",
"id_str": "113418408",
"profile_background_color": "FA743E",
"listed_count": 11,
"is_translation_enabled": false,
"utc_offset": 3600,
"statuses_count": 23179,
"description": "Not only shoes, a daily culture. Contact : antog@french-sneakerhead.fr #WeAreSneakerhead",
"friends_count": 127,
"location": "Dijon | Paris",
"profile_link_color": "4A913C",
"profile_image_url": "http://pbs.twimg.com/profile_images/693738638228754432/KUIF8fWA_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/113418408/1453885644",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/602947331172925440/zJmm9HCA.jpg",
"screen_name": "AntoninCrt",
"lang": "fr",
"profile_background_tile": true,
"favourites_count": 8962,
"name": "ANTOG",
"notifications": false,
"url": "https://t.co/pseKwdxUOk",
"created_at": "Thu Feb 11 18:01:57 +0000 2010",
"contributors_enabled": false,
"time_zone": "Paris",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 17:59:13 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#YeezyDays By @SHINZO_PARIS : https://t.co/Rtde8prZwe #Yeezy #YEEZYBOOST #YeezySeason #KanyeWest #Kanye https://t.co/bc8jOOXdsl",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694943100456849408,
"favorite_count": 2,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 4210480643,
"indices": [
14,
27
],
"id_str": "4210480643",
"screen_name": "SHINZO_PARIS",
"name": "SHINZO Paris"
}
],
"hashtags": [
{
"indices": [
0,
10
],
"text": "YeezyDays"
},
{
"indices": [
54,
60
],
"text": "Yeezy"
},
{
"indices": [
61,
72
],
"text": "YEEZYBOOST"
},
{
"indices": [
73,
85
],
"text": "YeezySeason"
},
{
"indices": [
86,
96
],
"text": "KanyeWest"
},
{
"indices": [
97,
103
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/Rtde8prZwe",
"indices": [
30,
53
],
"expanded_url": "http://bit.ly/20Ge7Jj",
"display_url": "bit.ly/20Ge7Jj"
}
],
"media": [
{
"expanded_url": "http://twitter.com/SHINZO_PARIS/status/694943100456849408/video/1",
"display_url": "pic.twitter.com/bc8jOOXdsl",
"url": "https://t.co/bc8jOOXdsl",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/694942675334729728/pu/img/NJ1MxdcUyaHRvdPo.jpg",
"id_str": "694942675334729728",
"sizes": {
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"large": {
"h": 720,
"resize": "fit",
"w": 720
},
"medium": {
"h": 600,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
104,
127
],
"type": "photo",
"id": 694942675334729728,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/694942675334729728/pu/img/NJ1MxdcUyaHRvdPo.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694943100456849408",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 4210480643,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/683266727908622336/Ho7XlJyQ_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/B3gi88XZRh",
"indices": [
0,
23
],
"expanded_url": "https://www.instagram.com/shinzo_paris/",
"display_url": "instagram.com/shinzo_paris/"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 77,
"profile_sidebar_border_color": "000000",
"id_str": "4210480643",
"profile_background_color": "000000",
"listed_count": 5,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 59,
"description": "Welcome to SHINZO Paris, the best dedicated areas to sport in the heart of Paris.\n27, 37, 39 rue Etienne Marcel, 75001 Paris\n#SHINZO #SHINZOParis",
"friends_count": 62,
"location": "Paris, Ile-de-France",
"profile_link_color": "ABB8C2",
"profile_image_url": "http://pbs.twimg.com/profile_images/683266727908622336/Ho7XlJyQ_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/4210480643/1454493423",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "SHINZO_PARIS",
"lang": "fr",
"profile_background_tile": false,
"favourites_count": 0,
"name": "SHINZO Paris",
"notifications": false,
"url": "https://t.co/B3gi88XZRh",
"created_at": "Tue Nov 17 14:45:59 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 17:58:41 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "When you stop thinking about frivolous things like #OJ, #Trump, #Kanye & #Obama, then you know you're onto something in life. #HigherLevels",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694942652148506625,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
51,
54
],
"text": "OJ"
},
{
"indices": [
56,
62
],
"text": "Trump"
},
{
"indices": [
64,
70
],
"text": "Kanye"
},
{
"indices": [
77,
83
],
"text": "Obama"
},
{
"indices": [
130,
143
],
"text": "HigherLevels"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694942652148506625",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 35829818,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/691126731776757760/37-W62YA_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/wQKZ0mQQow",
"indices": [
0,
23
],
"expanded_url": "http://www.chezrepublic.com",
"display_url": "chezrepublic.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 2503,
"profile_sidebar_border_color": "C0DEED",
"id_str": "35829818",
"profile_background_color": "C0DEED",
"listed_count": 104,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 5755,
"description": "Writer | Truthsayer | Sports fan | Health guru | Former journalist | Jayhawk in LA | Common sense advocate...Use your brains, America!\nCLARITY IS GOLD #Balance",
"friends_count": 2366,
"location": "Los Angeles, CA",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/691126731776757760/37-W62YA_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/35829818/1402340328",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "chezrepublic",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 3007,
"name": "CHESLEY J. DOHL",
"notifications": false,
"url": "https://t.co/wQKZ0mQQow",
"created_at": "Mon Apr 27 19:14:52 +0000 2009",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 17:56:54 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#ValentinesDay, SNUG STYLE. #kanye #snuglife #SayItWithKanye #valentine #bemyvalentine https://t.co/e1K7VWSmdE",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694942138396774406,
"favorite_count": 0,
"source": "<a href=\"http://instagram.com\" rel=\"nofollow\">Instagram</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
14
],
"text": "ValentinesDay"
},
{
"indices": [
28,
34
],
"text": "kanye"
},
{
"indices": [
35,
44
],
"text": "snuglife"
},
{
"indices": [
45,
60
],
"text": "SayItWithKanye"
},
{
"indices": [
61,
71
],
"text": "valentine"
},
{
"indices": [
72,
86
],
"text": "bemyvalentine"
}
],
"urls": [
{
"url": "https://t.co/e1K7VWSmdE",
"indices": [
87,
110
],
"expanded_url": "https://www.instagram.com/p/BBVU9d4r6Cx/",
"display_url": "instagram.com/p/BBVU9d4r6Cx/"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694942138396774406",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 294391261,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/632131779/monbimidvink7muifha1.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000355988811/2fc2eb40ae84d138209d1e28fdcc102a_normal.jpeg",
"profile_sidebar_fill_color": "E5E6DF",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/eK3vBhzHG9",
"indices": [
0,
23
],
"expanded_url": "https://www.thesnug.com/",
"display_url": "thesnug.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 916,
"profile_sidebar_border_color": "DBDBD4",
"id_str": "294391261",
"profile_background_color": "9AE4E8",
"listed_count": 66,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 15637,
"description": "FOLIO: Top Women in Media Honoree 2015 + Editor, Digital Engagement @TimeInc @ThisOldHouse Creator of @TheSnugOnline @ThisOldAPT | #GirlsRights | #DIY",
"friends_count": 401,
"location": "New York City",
"profile_link_color": "295994",
"profile_image_url": "http://pbs.twimg.com/profile_images/378800000355988811/2fc2eb40ae84d138209d1e28fdcc102a_normal.jpeg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/294391261/1401382571",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/632131779/monbimidvink7muifha1.jpeg",
"screen_name": "TabithaSukhai",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 3467,
"name": "Tabitha Sukhai",
"notifications": false,
"url": "https://t.co/eK3vBhzHG9",
"created_at": "Sat May 07 02:18:02 +0000 2011",
"contributors_enabled": false,
"time_zone": "Quito",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 17:54:51 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @kindiskindco: Humble With Just A Hint Of Kanye Tee: https://t.co/o4XLDMEEV0\n #Kanye #tshirts #swag #onfleek #shopping #retweet https://\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694942091709775872,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 3292668354,
"indices": [
3,
16
],
"id_str": "3292668354",
"screen_name": "kindiskindco",
"name": "Kind is Kind"
}
],
"hashtags": [
{
"indices": [
81,
87
],
"text": "Kanye"
},
{
"indices": [
88,
96
],
"text": "tshirts"
},
{
"indices": [
97,
102
],
"text": "swag"
},
{
"indices": [
103,
111
],
"text": "onfleek"
},
{
"indices": [
112,
121
],
"text": "shopping"
},
{
"indices": [
122,
130
],
"text": "retweet"
}
],
"urls": [
{
"url": "https://t.co/o4XLDMEEV0",
"indices": [
56,
79
],
"expanded_url": "https://www.etsy.com/listing/265077364?utm_source=twitter&utm_medium=tweet&utm_campaign=humble%20kanye",
"display_url": "etsy.com/listing/265077\u2026"
}
],
"media": [
{
"source_user_id": 3292668354,
"source_status_id_str": "694744948973793280",
"expanded_url": "http://twitter.com/kindiskindco/status/694744948973793280/photo/1",
"display_url": "pic.twitter.com/4YH7z4CSRU",
"url": "https://t.co/4YH7z4CSRU",
"media_url_https": "https://pbs.twimg.com/media/CaQ62RvVAAAzj1y.jpg",
"source_user_id_str": "3292668354",
"source_status_id": 694744948973793280,
"id_str": "694744946671157248",
"sizes": {
"large": {
"h": 1000,
"resize": "fit",
"w": 1000
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 600,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
139,
140
],
"type": "photo",
"id": 694744946671157248,
"media_url": "http://pbs.twimg.com/media/CaQ62RvVAAAzj1y.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "694942091709775872",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Humble With Just A Hint Of Kanye Tee: https://t.co/o4XLDMEEV0\n #Kanye #tshirts #swag #onfleek #shopping #retweet https://t.co/4YH7z4CSRU",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694744948973793280,
"favorite_count": 9,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
63,
69
],
"text": "Kanye"
},
{
"indices": [
70,
78
],
"text": "tshirts"
},
{
"indices": [
79,
84
],
"text": "swag"
},
{
"indices": [
85,
93
],
"text": "onfleek"
},
{
"indices": [
94,
103
],
"text": "shopping"
},
{
"indices": [
104,
112
],
"text": "retweet"
}
],
"urls": [
{
"url": "https://t.co/o4XLDMEEV0",
"indices": [
38,
61
],
"expanded_url": "https://www.etsy.com/listing/265077364?utm_source=twitter&utm_medium=tweet&utm_campaign=humble%20kanye",
"display_url": "etsy.com/listing/265077\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/kindiskindco/status/694744948973793280/photo/1",
"display_url": "pic.twitter.com/4YH7z4CSRU",
"url": "https://t.co/4YH7z4CSRU",
"media_url_https": "https://pbs.twimg.com/media/CaQ62RvVAAAzj1y.jpg",
"id_str": "694744946671157248",
"sizes": {
"large": {
"h": 1000,
"resize": "fit",
"w": 1000
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 600,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
113,
136
],
"type": "photo",
"id": 694744946671157248,
"media_url": "http://pbs.twimg.com/media/CaQ62RvVAAAzj1y.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "694744948973793280",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 3292668354,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/624933656717438980/HmhjeQYm.jpg",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/624934869320122368/0I6LTEH8_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/vQxT0AtutM",
"indices": [
0,
22
],
"expanded_url": "http://kindiskind.com",
"display_url": "kindiskind.com"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/ms25NBIN4p",
"indices": [
69,
92
],
"expanded_url": "https://www.etsy.com/shop/kindkind",
"display_url": "etsy.com/shop/kindkind"
}
]
}
},
"followers_count": 2131,
"profile_sidebar_border_color": "000000",
"id_str": "3292668354",
"profile_background_color": "FFFFFF",
"listed_count": 21,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 825,
"description": "Designing viral #tees and #threads for humans; Selling wares over at https://t.co/ms25NBIN4p",
"friends_count": 3102,
"location": "On the road",
"profile_link_color": "F52549",
"profile_image_url": "http://pbs.twimg.com/profile_images/624934869320122368/0I6LTEH8_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3292668354/1451189081",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/624933656717438980/HmhjeQYm.jpg",
"screen_name": "kindiskindco",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 24,
"name": "Kind is Kind",
"notifications": false,
"url": "http://t.co/vQxT0AtutM",
"created_at": "Sat Jul 25 13:23:09 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 04:51:18 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3016884780,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/587758860078727169/aBfZ6Xyx_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 52,
"profile_sidebar_border_color": "C0DEED",
"id_str": "3016884780",
"profile_background_color": "C0DEED",
"listed_count": 2,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 170,
"description": "I really want to be a composer/director/actor but I might be in the wrong place.",
"friends_count": 144,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/587758860078727169/aBfZ6Xyx_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3016884780/1428422349",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "knee1koe",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 243,
"name": "Niko De La Garza",
"notifications": false,
"url": null,
"created_at": "Wed Feb 11 16:45:30 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 17:54:40 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "New podcast. Talking the hot virus on these streets #ZikaVirus, my struggle with #kanye fandom, and #IowaCaucus \n\nhttps://t.co/Pq0koO02pC",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694941737744252929,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
52,
62
],
"text": "ZikaVirus"
},
{
"indices": [
81,
87
],
"text": "kanye"
},
{
"indices": [
100,
111
],
"text": "IowaCaucus"
}
],
"urls": [
{
"url": "https://t.co/Pq0koO02pC",
"indices": [
114,
137
],
"expanded_url": "https://m.soundcloud.com/2andabottle/ep-7-kanye-zika-virus-and-the",
"display_url": "m.soundcloud.com/2andabottle/ep\u2026"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694941737744252929",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 19684787,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/141395125/george-condo_1.jpg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1460194443/38317_415236951890_520656890_5172970_5628231_n_normal.jpg",
"profile_sidebar_fill_color": "C0DFEC",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 366,
"profile_sidebar_border_color": "A8C7F7",
"id_str": "19684787",
"profile_background_color": "022330",
"listed_count": 6,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 7448,
"description": "Trying to make it. \nWriting at @verysmartbros and other locales | Short Doc Programmer @brooklynfilmfestival \nHumorist, professional shit talker @2andabottle",
"friends_count": 506,
"location": "floating about...",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/1460194443/38317_415236951890_520656890_5172970_5628231_n_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/141395125/george-condo_1.jpg",
"screen_name": "_brandonallen",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 52,
"name": "Brandon Allen",
"notifications": false,
"url": null,
"created_at": "Wed Jan 28 23:48:19 +0000 2009",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 17:53:16 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Oh Kanye! 7 Unspoken Social Media Rules All Parents Should Follow via @momdotme https://t.co/pxXvqXkMHf #kanye #saysomethingnice #amberrose",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694941613684985856,
"favorite_count": 1,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 485156000,
"indices": [
70,
79
],
"id_str": "485156000",
"screen_name": "momdotme",
"name": "mom.me"
}
],
"hashtags": [
{
"indices": [
104,
110
],
"text": "kanye"
},
{
"indices": [
111,
128
],
"text": "saysomethingnice"
},
{
"indices": [
129,
139
],
"text": "amberrose"
}
],
"urls": [
{
"url": "https://t.co/pxXvqXkMHf",
"indices": [
80,
103
],
"expanded_url": "http://www.mom.me/blog/27935-7-unspoken-social-media-rules-parents-follow/",
"display_url": "mom.me/blog/27935-7-u\u2026"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694941613684985856",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 35582273,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/344918034408815328/e080306a2fcbf171e7557b222ca6a4d8.jpeg",
"verified": false,
"profile_text_color": "35414A",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/631578525288415233/h_z7F2bO_normal.jpg",
"profile_sidebar_fill_color": "13121A",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/6X3cxVTSps",
"indices": [
0,
23
],
"expanded_url": "http://badsandy.com",
"display_url": "badsandy.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 1445,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "35582273",
"profile_background_color": "000000",
"listed_count": 62,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 3894,
"description": "Wife. Mother. Writer. Noticer.",
"friends_count": 850,
"location": "Los Angeles, CA",
"profile_link_color": "9266CC",
"profile_image_url": "http://pbs.twimg.com/profile_images/631578525288415233/h_z7F2bO_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/35582273/1360875047",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/344918034408815328/e080306a2fcbf171e7557b222ca6a4d8.jpeg",
"screen_name": "TheRealBadSandy",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 813,
"name": "Meredith Gordon",
"notifications": false,
"url": "https://t.co/6X3cxVTSps",
"created_at": "Sun Apr 26 22:19:42 +0000 2009",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 17:52:46 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "YES! @DJAbrantee The timing is too perfect! #Kanye I swear his going into a meltdown, his crazy. Can u play NE-YO pleaseeee <3",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694941039837212673,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 20422579,
"indices": [
5,
16
],
"id_str": "20422579",
"screen_name": "DJAbrantee",
"name": "Abrantee"
}
],
"hashtags": [
{
"indices": [
44,
50
],
"text": "Kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694941039837212673",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 30720080,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/617603944014069760/43gKzRzz_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 190,
"profile_sidebar_border_color": "000000",
"id_str": "30720080",
"profile_background_color": "000000",
"listed_count": 6,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 942,
"description": "21 Years old. It's Cool, I got it :) x Ne-Yo is the Love. Arsenal are the team.",
"friends_count": 669,
"location": "",
"profile_link_color": "DD2E44",
"profile_image_url": "http://pbs.twimg.com/profile_images/617603944014069760/43gKzRzz_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/30720080/1430162845",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif",
"screen_name": "EllieLovesYou_x",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 25,
"name": "Ellie Shanley",
"notifications": false,
"url": null,
"created_at": "Sun Apr 12 20:58:02 +0000 2009",
"contributors_enabled": false,
"time_zone": "Europe/London",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 17:50:29 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": ".@kanyewest Kanye West Changes Album Title Yet Again - https://t.co/oX5aPLPwlO #Names #Waves #Kanye https://t.co/P0kLb0GI5s",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694940788820586496,
"favorite_count": 0,
"source": "<a href=\"http://www.AmericanNamesociety.com\" rel=\"nofollow\">ANS Post to Twitter</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 169686021,
"indices": [
1,
11
],
"id_str": "169686021",
"screen_name": "kanyewest",
"name": "KANYE WEST"
}
],
"hashtags": [
{
"indices": [
79,
85
],
"text": "Names"
},
{
"indices": [
86,
92
],
"text": "Waves"
},
{
"indices": [
93,
99
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/oX5aPLPwlO",
"indices": [
55,
78
],
"expanded_url": "http://www.americannamesociety.org/kanye-west-changes-album-title-yet-again/",
"display_url": "americannamesociety.org/kanye-west-cha\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/AmNameSociety/status/694940788820586496/photo/1",
"display_url": "pic.twitter.com/P0kLb0GI5s",
"url": "https://t.co/P0kLb0GI5s",
"media_url_https": "https://pbs.twimg.com/media/CaTs9yHUkAAu9pZ.jpg",
"id_str": "694940788690554880",
"sizes": {
"large": {
"h": 240,
"resize": "fit",
"w": 193
},
"small": {
"h": 240,
"resize": "fit",
"w": 193
},
"medium": {
"h": 240,
"resize": "fit",
"w": 193
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
100,
123
],
"type": "photo",
"id": 694940788690554880,
"media_url": "http://pbs.twimg.com/media/CaTs9yHUkAAu9pZ.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694940788820586496",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3180880376,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/593835196622835712/k-KUXrSy.jpg",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/593833212805152768/CJLS-M-V_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/Wc1SXU2nkd",
"indices": [
0,
22
],
"expanded_url": "http://www.AmericanNameSociety.org",
"display_url": "AmericanNameSociety.org"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 157,
"profile_sidebar_border_color": "000000",
"id_str": "3180880376",
"profile_background_color": "022330",
"listed_count": 14,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 327,
"description": "Society for the Study of Onomastics",
"friends_count": 78,
"location": "United States",
"profile_link_color": "DD2E44",
"profile_image_url": "http://pbs.twimg.com/profile_images/593833212805152768/CJLS-M-V_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3180880376/1430416006",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/593835196622835712/k-KUXrSy.jpg",
"screen_name": "AmNameSociety",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 19,
"name": "AmericanNameSociety",
"notifications": false,
"url": "http://t.co/Wc1SXU2nkd",
"created_at": "Thu Apr 30 17:42:49 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 17:49:30 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @nihilist_arbys: Yo #kanye! Arbys has beef too! The beef of millions of cow carcasses that will, like you, be forgotten in a godless unf\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694939551127605248,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 2983295300,
"indices": [
3,
18
],
"id_str": "2983295300",
"screen_name": "nihilist_arbys",
"name": "Nihilist Arby's"
}
],
"hashtags": [
{
"indices": [
23,
29
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3258,
"id_str": "694939551127605248",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Yo #kanye! Arbys has beef too! The beef of millions of cow carcasses that will, like you, be forgotten in a godless unfeeling void\nEat arbys",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 692449566482915328,
"favorite_count": 4864,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
3,
9
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3258,
"id_str": "692449566482915328",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 2983295300,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/555493486997151744/2UdQtjdE_normal.png",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/Vv2y8l6sOv",
"indices": [
0,
22
],
"expanded_url": "http://arbys.com",
"display_url": "arbys.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 174552,
"profile_sidebar_border_color": "000000",
"id_str": "2983295300",
"profile_background_color": "000000",
"listed_count": 943,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 483,
"description": "Officially, I have nothing to do with arby's. Unofficially, everything is nothing. nihilistarbys@gmail.com",
"friends_count": 0,
"location": "arby's",
"profile_link_color": "DD2E44",
"profile_image_url": "http://pbs.twimg.com/profile_images/555493486997151744/2UdQtjdE_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2983295300/1421278215",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "nihilist_arbys",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 0,
"name": "Nihilist Arby's",
"notifications": false,
"url": "http://t.co/Vv2y8l6sOv",
"created_at": "Wed Jan 14 22:33:08 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Jan 27 20:50:16 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 513784265,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/678218492785504256/5bN5SYwV_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 84,
"profile_sidebar_border_color": "C0DEED",
"id_str": "513784265",
"profile_background_color": "C0DEED",
"listed_count": 4,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 2661,
"description": "What was the middle part again?",
"friends_count": 487,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/678218492785504256/5bN5SYwV_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/513784265/1450534450",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "Man_frenjensen",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 19183,
"name": "My name is Harvey",
"notifications": false,
"url": null,
"created_at": "Sun Mar 04 00:55:14 +0000 2012",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 17:44:34 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @KenecoB: Kanye West Forces Designers to Reschedule Fashion Week Shows (Again) - Fashionista https://t.co/2Ti5ux2aw7 #Kanye #Fashion #Fa\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694939289000476672,
"favorite_count": 0,
"source": "<a href=\"https://roundteam.co\" rel=\"nofollow\">RoundTeam</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 115280260,
"indices": [
3,
11
],
"id_str": "115280260",
"screen_name": "KenecoB",
"name": "KenecoB"
}
],
"hashtags": [
{
"indices": [
120,
126
],
"text": "Kanye"
},
{
"indices": [
127,
135
],
"text": "Fashion"
},
{
"indices": [
136,
140
],
"text": "Fashionnews"
}
],
"urls": [
{
"url": "https://t.co/2Ti5ux2aw7",
"indices": [
96,
119
],
"expanded_url": "http://ow.ly/XPCEM",
"display_url": "ow.ly/XPCEM"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "694939289000476672",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Kanye West Forces Designers to Reschedule Fashion Week Shows (Again) - Fashionista https://t.co/2Ti5ux2aw7 #Kanye #Fashion #Fashionnews",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694937283229794305,
"favorite_count": 0,
"source": "<a href=\"http://www.hootsuite.com\" rel=\"nofollow\">Hootsuite</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
107,
113
],
"text": "Kanye"
},
{
"indices": [
114,
122
],
"text": "Fashion"
},
{
"indices": [
123,
135
],
"text": "Fashionnews"
}
],
"urls": [
{
"url": "https://t.co/2Ti5ux2aw7",
"indices": [
83,
106
],
"expanded_url": "http://ow.ly/XPCEM",
"display_url": "ow.ly/XPCEM"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "694937283229794305",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 115280260,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652279650429759488/WqaszTgY.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/557005695837806592/YvDHcqfF_normal.jpeg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/bJ9KiOa8b7",
"indices": [
0,
23
],
"expanded_url": "http://www.kenecobeauty.com/",
"display_url": "kenecobeauty.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 2517,
"profile_sidebar_border_color": "000000",
"id_str": "115280260",
"profile_background_color": "BADFCD",
"listed_count": 13,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 4357,
"description": "I do hair, I blog about beauty and soccer @GoalsGoneViral . Follow me on Instagram: @kenecobeauty",
"friends_count": 4550,
"location": "Nairobi and VA",
"profile_link_color": "FF0000",
"profile_image_url": "http://pbs.twimg.com/profile_images/557005695837806592/YvDHcqfF_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/115280260/1444350621",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652279650429759488/WqaszTgY.png",
"screen_name": "KenecoB",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 1521,
"name": "KenecoB",
"notifications": false,
"url": "https://t.co/bJ9KiOa8b7",
"created_at": "Thu Feb 18 05:11:48 +0000 2010",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 17:35:34 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 53263478,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/616718993127112704/Virgh_tZ_normal.jpg",
"profile_sidebar_fill_color": "FFFFFF",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 103,
"profile_sidebar_border_color": "EEEEEE",
"id_str": "53263478",
"profile_background_color": "B2DFDA",
"listed_count": 137,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 7952,
"description": "Elegant fashion critique with a touch of grace...",
"friends_count": 5,
"location": "USA",
"profile_link_color": "93A644",
"profile_image_url": "http://pbs.twimg.com/profile_images/616718993127112704/Virgh_tZ_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/53263478/1435872737",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif",
"screen_name": "fashionnewsusa",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 0,
"name": "Emily Grace",
"notifications": false,
"url": null,
"created_at": "Fri Jul 03 02:11:48 +0000 2009",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 17:43:32 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#Kanye West clarifies that Waves isn\u2019t the best album of all time https://t.co/qFuyd83SG4",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694938361870602241,
"favorite_count": 0,
"source": "<a href=\"http://ifttt.com\" rel=\"nofollow\">IFTTT</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/qFuyd83SG4",
"indices": [
66,
89
],
"expanded_url": "http://ift.tt/23J3nfx",
"display_url": "ift.tt/23J3nfx"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694938361870602241",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 106763540,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/693421173086900224/-v_VV3Ib.jpg",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/693447250224087040/au64Cdjo_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 938,
"profile_sidebar_border_color": "000000",
"id_str": "106763540",
"profile_background_color": "1A1B1F",
"listed_count": 768,
"is_translation_enabled": false,
"utc_offset": 19800,
"statuses_count": 514785,
"description": "Analyst, Blogger, Coder, Designer, Editor, Futurist, Gadgetist, Hacker & an Internet person",
"friends_count": 23,
"location": "Chennai, India",
"profile_link_color": "3B94D9",
"profile_image_url": "http://pbs.twimg.com/profile_images/693447250224087040/au64Cdjo_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/106763540/1447093928",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/693421173086900224/-v_VV3Ib.jpg",
"screen_name": "Michael_Vasanth",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 1140,
"name": "Michael Vasanth",
"notifications": false,
"url": null,
"created_at": "Wed Jan 20 16:31:45 +0000 2010",
"contributors_enabled": false,
"time_zone": "Asia/Kolkata",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 17:39:51 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Kanye West Forces Designers to Reschedule Fashion Week Shows (Again) - Fashionista https://t.co/2Ti5ux2aw7 #Kanye #Fashion #Fashionnews",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694937283229794305,
"favorite_count": 0,
"source": "<a href=\"http://www.hootsuite.com\" rel=\"nofollow\">Hootsuite</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
107,
113
],
"text": "Kanye"
},
{
"indices": [
114,
122
],
"text": "Fashion"
},
{
"indices": [
123,
135
],
"text": "Fashionnews"
}
],
"urls": [
{
"url": "https://t.co/2Ti5ux2aw7",
"indices": [
83,
106
],
"expanded_url": "http://ow.ly/XPCEM",
"display_url": "ow.ly/XPCEM"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 1,
"id_str": "694937283229794305",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 115280260,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652279650429759488/WqaszTgY.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/557005695837806592/YvDHcqfF_normal.jpeg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/bJ9KiOa8b7",
"indices": [
0,
23
],
"expanded_url": "http://www.kenecobeauty.com/",
"display_url": "kenecobeauty.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 2517,
"profile_sidebar_border_color": "000000",
"id_str": "115280260",
"profile_background_color": "BADFCD",
"listed_count": 13,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 4357,
"description": "I do hair, I blog about beauty and soccer @GoalsGoneViral . Follow me on Instagram: @kenecobeauty",
"friends_count": 4550,
"location": "Nairobi and VA",
"profile_link_color": "FF0000",
"profile_image_url": "http://pbs.twimg.com/profile_images/557005695837806592/YvDHcqfF_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/115280260/1444350621",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652279650429759488/WqaszTgY.png",
"screen_name": "KenecoB",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 1521,
"name": "KenecoB",
"notifications": false,
"url": "https://t.co/bJ9KiOa8b7",
"created_at": "Thu Feb 18 05:11:48 +0000 2010",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 17:35:34 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @nihilist_arbys: Yo #kanye! Arbys has beef too! The beef of millions of cow carcasses that will, like you, be forgotten in a godless unf\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694937069693435905,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 2983295300,
"indices": [
3,
18
],
"id_str": "2983295300",
"screen_name": "nihilist_arbys",
"name": "Nihilist Arby's"
}
],
"hashtags": [
{
"indices": [
23,
29
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3258,
"id_str": "694937069693435905",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Yo #kanye! Arbys has beef too! The beef of millions of cow carcasses that will, like you, be forgotten in a godless unfeeling void\nEat arbys",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 692449566482915328,
"favorite_count": 4864,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
3,
9
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 3258,
"id_str": "692449566482915328",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 2983295300,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/555493486997151744/2UdQtjdE_normal.png",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/Vv2y8l6sOv",
"indices": [
0,
22
],
"expanded_url": "http://arbys.com",
"display_url": "arbys.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 174552,
"profile_sidebar_border_color": "000000",
"id_str": "2983295300",
"profile_background_color": "000000",
"listed_count": 943,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 483,
"description": "Officially, I have nothing to do with arby's. Unofficially, everything is nothing. nihilistarbys@gmail.com",
"friends_count": 0,
"location": "arby's",
"profile_link_color": "DD2E44",
"profile_image_url": "http://pbs.twimg.com/profile_images/555493486997151744/2UdQtjdE_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2983295300/1421278215",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "nihilist_arbys",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 0,
"name": "Nihilist Arby's",
"notifications": false,
"url": "http://t.co/Vv2y8l6sOv",
"created_at": "Wed Jan 14 22:33:08 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Jan 27 20:50:16 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 792723895,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/692210843371569152/WuVd7SI6_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/KE01MAYVIt",
"indices": [
0,
23
],
"expanded_url": "http://pathetic-douchebag.tumblr.com/",
"display_url": "pathetic-douchebag.tumblr.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 165,
"profile_sidebar_border_color": "000000",
"id_str": "792723895",
"profile_background_color": "000000",
"listed_count": 4,
"is_translation_enabled": false,
"utc_offset": -14400,
"statuses_count": 4872,
"description": "never running from a real fight // #bernie2016",
"friends_count": 268,
"location": "he/him",
"profile_link_color": "9266CC",
"profile_image_url": "http://pbs.twimg.com/profile_images/692210843371569152/WuVd7SI6_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/792723895/1446792423",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif",
"screen_name": "sad_oniichan",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 4389,
"name": "dani phantom",
"notifications": false,
"url": "https://t.co/KE01MAYVIt",
"created_at": "Fri Aug 31 00:45:31 +0000 2012",
"contributors_enabled": false,
"time_zone": "Atlantic Time (Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 17:34:43 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#Kanye #west Wiz Khalifa Details Kanye West, Amber Rose Relationships: \"We bounced back. That's all that matte... https://t.co/zkWyNgX7wM",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694936552200228864,
"favorite_count": 0,
"source": "<a href=\"http://twitterfeed.com\" rel=\"nofollow\">twitterfeed</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "Kanye"
},
{
"indices": [
7,
12
],
"text": "west"
}
],
"urls": [
{
"url": "https://t.co/zkWyNgX7wM",
"indices": [
114,
137
],
"expanded_url": "http://bet.us/1SH0tCU",
"display_url": "bet.us/1SH0tCU"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694936552200228864",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3015364734,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/564925994461442048/6djtTyEz.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/564868165683793920/bxt3liZO_normal.png",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/8NsOvJqHeR",
"indices": [
0,
23
],
"expanded_url": "http://tubebitch.com",
"display_url": "tubebitch.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 2098,
"profile_sidebar_border_color": "000000",
"id_str": "3015364734",
"profile_background_color": "000000",
"listed_count": 17,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 8053,
"description": "TubeBitch. Life's a bitch, sonofabitch, bitch hurts, bitch screw you, bitchslap, bitch be gone, funny bitch, bitch please!",
"friends_count": 1967,
"location": "Online Bitch",
"profile_link_color": "BB0000",
"profile_image_url": "http://pbs.twimg.com/profile_images/564868165683793920/bxt3liZO_normal.png",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/564925994461442048/6djtTyEz.png",
"screen_name": "TubeBitchdotcom",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 178,
"name": "Tube Bitch",
"notifications": false,
"url": "https://t.co/8NsOvJqHeR",
"created_at": "Mon Feb 09 19:22:16 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 17:32:39 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#Kanye and it\u2019s not even close\nDrake has never put out anything that\u2019s as good as College Dropout, Late Registration, Graduation or MBDTF.",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694936161429647360,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "Kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694936161429647360",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 4559048056,
"profile_background_image_url_https": null,
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/691537063934627840/_3WhPIKC_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 59,
"profile_sidebar_border_color": "C0DEED",
"id_str": "4559048056",
"profile_background_color": "F5F8FA",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 994,
"description": "my beautiful dark twisted fantasy",
"friends_count": 62,
"location": "",
"profile_link_color": "2B7BB9",
"profile_image_url": "http://pbs.twimg.com/profile_images/691537063934627840/_3WhPIKC_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/4559048056/1450718035",
"profile_background_image_url": null,
"screen_name": "heartlessyeezus",
"lang": "en-GB",
"profile_background_tile": false,
"favourites_count": 387,
"name": "Y E E Z U S",
"notifications": false,
"url": null,
"created_at": "Mon Dec 21 17:09:15 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 17:31:06 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @livefrome: #Kanye says he's squashed his beef with #WizKhalifa - are you surprised? We're reading your tweets on #LiveFromE https://t.\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694935970521735168,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 621284187,
"indices": [
3,
13
],
"id_str": "621284187",
"screen_name": "livefrome",
"name": "Live From E!"
}
],
"hashtags": [
{
"indices": [
15,
21
],
"text": "Kanye"
},
{
"indices": [
55,
66
],
"text": "WizKhalifa"
},
{
"indices": [
118,
128
],
"text": "LiveFromE"
}
],
"urls": [],
"media": [
{
"source_user_id": 621284187,
"source_status_id_str": "694908537869217796",
"expanded_url": "http://twitter.com/livefrome/status/694908537869217796/photo/1",
"display_url": "pic.twitter.com/Q0TEWfzpPl",
"url": "https://t.co/Q0TEWfzpPl",
"media_url_https": "https://pbs.twimg.com/media/CaTPofRUMAAFLPP.jpg",
"source_user_id_str": "621284187",
"source_status_id": 694908537869217796,
"id_str": "694908537017741312",
"sizes": {
"small": {
"h": 300,
"resize": "fit",
"w": 300
},
"large": {
"h": 300,
"resize": "fit",
"w": 300
},
"medium": {
"h": 300,
"resize": "fit",
"w": 300
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
139,
140
],
"type": "photo",
"id": 694908537017741312,
"media_url": "http://pbs.twimg.com/media/CaTPofRUMAAFLPP.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 16,
"id_str": "694935970521735168",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "#Kanye says he's squashed his beef with #WizKhalifa - are you surprised? We're reading your tweets on #LiveFromE https://t.co/Q0TEWfzpPl",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694908537869217796,
"favorite_count": 51,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "Kanye"
},
{
"indices": [
40,
51
],
"text": "WizKhalifa"
},
{
"indices": [
103,
113
],
"text": "LiveFromE"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/livefrome/status/694908537869217796/photo/1",
"display_url": "pic.twitter.com/Q0TEWfzpPl",
"url": "https://t.co/Q0TEWfzpPl",
"media_url_https": "https://pbs.twimg.com/media/CaTPofRUMAAFLPP.jpg",
"id_str": "694908537017741312",
"sizes": {
"small": {
"h": 300,
"resize": "fit",
"w": 300
},
"large": {
"h": 300,
"resize": "fit",
"w": 300
},
"medium": {
"h": 300,
"resize": "fit",
"w": 300
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
114,
137
],
"type": "photo",
"id": 694908537017741312,
"media_url": "http://pbs.twimg.com/media/CaTPofRUMAAFLPP.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 16,
"id_str": "694908537869217796",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 621284187,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/600283416/e5s6gy3l0oe5qsed53mr.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/580116409360867328/8EPXo85Z_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/PaS7OuA1cs",
"indices": [
0,
22
],
"expanded_url": "http://eonline.com",
"display_url": "eonline.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 51015,
"profile_sidebar_border_color": "C0DEED",
"id_str": "621284187",
"profile_background_color": "C0DEED",
"listed_count": 156,
"is_translation_enabled": false,
"utc_offset": -25200,
"statuses_count": 5638,
"description": "Pop into our studio weekdays at 12:30p ET | 9:30a PT and join the conversation! #LiveFromE",
"friends_count": 59,
"location": "Los Angeles, CA",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/580116409360867328/8EPXo85Z_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/600283416/e5s6gy3l0oe5qsed53mr.jpeg",
"screen_name": "livefrome",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 113,
"name": "Live From E!",
"notifications": false,
"url": "http://t.co/PaS7OuA1cs",
"created_at": "Thu Jun 28 18:30:12 +0000 2012",
"contributors_enabled": false,
"time_zone": "Arizona",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 15:41:20 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 4834869155,
"profile_background_image_url_https": null,
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/690496644954132480/ocPMJENj_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 36,
"profile_sidebar_border_color": "C0DEED",
"id_str": "4834869155",
"profile_background_color": "F5F8FA",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 26,
"description": "Live life in the way that is befitting to you but in a respectful manner",
"friends_count": 55,
"location": "",
"profile_link_color": "2B7BB9",
"profile_image_url": "http://pbs.twimg.com/profile_images/690496644954132480/ocPMJENj_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/4834869155/1454013570",
"profile_background_image_url": null,
"screen_name": "Ermdee20",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 8,
"name": "Afolayan Damilola",
"notifications": false,
"url": null,
"created_at": "Fri Jan 22 10:59:31 +0000 2016",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 17:30:21 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#KCRW #morningbecomeseclectic #valentine <3 ! yeassssssss @Jason_Bentley #KANYE @KanyeWest #LA @IbizaSonica #IBIZA https://t.co/Uq34M1LCGg",
"is_quote_status": true,
"in_reply_to_status_id": null,
"id": 694935526831321089,
"favorite_count": 1,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 23599540,
"indices": [
61,
75
],
"id_str": "23599540",
"screen_name": "jason_bentley",
"name": "Jason Bentley"
},
{
"id": 169686021,
"indices": [
83,
93
],
"id_str": "169686021",
"screen_name": "kanyewest",
"name": "KANYE WEST"
},
{
"id": 20102119,
"indices": [
98,
110
],
"id_str": "20102119",
"screen_name": "ibizasonica",
"name": "Ibiza Sonica"
}
],
"hashtags": [
{
"indices": [
0,
5
],
"text": "KCRW"
},
{
"indices": [
6,
29
],
"text": "morningbecomeseclectic"
},
{
"indices": [
30,
40
],
"text": "valentine"
},
{
"indices": [
76,
82
],
"text": "KANYE"
},
{
"indices": [
94,
97
],
"text": "LA"
},
{
"indices": [
111,
117
],
"text": "IBIZA"
}
],
"urls": [
{
"url": "https://t.co/Uq34M1LCGg",
"indices": [
119,
142
],
"expanded_url": "https://twitter.com/ike_musik/status/642539417547243520",
"display_url": "twitter.com/ike_musik/stat\u2026"
}
]
},
"quoted_status_id": 642539417547243520,
"retweeted": false,
"coordinates": null,
"quoted_status": {
"contributors": null,
"truncated": false,
"text": "check out the new track. More to come! THNX!!!!\n\nhttps://t.co/lVqz0XeJHQ",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 642539417547243520,
"favorite_count": 2,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [],
"urls": [
{
"url": "https://t.co/lVqz0XeJHQ",
"indices": [
49,
72
],
"expanded_url": "https://soundcloud.com/ike_musik/sweet-the-morning",
"display_url": "soundcloud.com/ike_musik/swee\u2026"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "642539417547243520",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 844444404,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/690714456083554304/nRBtm5i5_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/78LxoUOXC2",
"indices": [
0,
23
],
"expanded_url": "http://www.soundcloud.com/ike_musik",
"display_url": "soundcloud.com/ike_musik"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/78LxoUOXC2",
"indices": [
0,
23
],
"expanded_url": "http://www.soundcloud.com/ike_musik",
"display_url": "soundcloud.com/ike_musik"
}
]
}
},
"followers_count": 24,
"profile_sidebar_border_color": "000000",
"id_str": "844444404",
"profile_background_color": "000000",
"listed_count": 1,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 41,
"description": "https://t.co/78LxoUOXC2 ///. Questions and Inquiries: ike.booking@gmail.com",
"friends_count": 77,
"location": "Nashville, TN",
"profile_link_color": "3B94D9",
"profile_image_url": "http://pbs.twimg.com/profile_images/690714456083554304/nRBtm5i5_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/844444404/1454454436",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "ike_musik",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 4,
"name": "!ke",
"notifications": false,
"url": "https://t.co/78LxoUOXC2",
"created_at": "Mon Sep 24 22:57:10 +0000 2012",
"contributors_enabled": false,
"time_zone": "Central America",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Sat Sep 12 03:25:09 +0000 2015",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694935526831321089",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 75950434,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/197750888/dawnstwitter.jpg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/3278674795/cec263ae6163740992fc244b015ed630_normal.jpeg",
"profile_sidebar_fill_color": "FFFFFF",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 670,
"profile_sidebar_border_color": "0AFFE2",
"id_str": "75950434",
"profile_background_color": "131516",
"listed_count": 17,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 4907,
"description": "souls, sounds & soil 'n surf'",
"friends_count": 1912,
"location": "",
"profile_link_color": "2A83C7",
"profile_image_url": "http://pbs.twimg.com/profile_images/3278674795/cec263ae6163740992fc244b015ed630_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/75950434/1452094706",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/197750888/dawnstwitter.jpg",
"screen_name": "Geneao",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 4772,
"name": "Geneao",
"notifications": false,
"url": null,
"created_at": "Mon Sep 21 03:42:44 +0000 2009",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 17:28:35 +0000 2016",
"quoted_status_id_str": "642539417547243520",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "When people try you and you have to put them in their place #Kanye https://t.co/Zq8eruXpP4",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694935176619630594,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
60,
66
],
"text": "Kanye"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/parada_15/status/694935176619630594/photo/1",
"display_url": "pic.twitter.com/Zq8eruXpP4",
"url": "https://t.co/Zq8eruXpP4",
"media_url_https": "https://pbs.twimg.com/media/CaTn21BWcAAd_tO.jpg",
"id_str": "694935171653595136",
"sizes": {
"small": {
"h": 603,
"resize": "fit",
"w": 340
},
"large": {
"h": 1024,
"resize": "fit",
"w": 577
},
"medium": {
"h": 1024,
"resize": "fit",
"w": 577
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
67,
90
],
"type": "photo",
"id": 694935171653595136,
"media_url": "http://pbs.twimg.com/media/CaTn21BWcAAd_tO.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694935176619630594",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 708406105,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/689612963884457985/y1qaL3Q4_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 154,
"profile_sidebar_border_color": "C0DEED",
"id_str": "708406105",
"profile_background_color": "C0DEED",
"listed_count": 1,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 4980,
"description": "USMC Honor. Courage. Commitment",
"friends_count": 277,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/689612963884457985/y1qaL3Q4_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/708406105/1443675746",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "parada_15",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 6460,
"name": "Juan Parada",
"notifications": false,
"url": null,
"created_at": "Sat Jul 21 05:12:32 +0000 2012",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 17:27:12 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "@madnewsblog \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\n#Kanye dohhhhh!\ud83d\ude06",
"is_quote_status": false,
"in_reply_to_status_id": 694923578144333824,
"id": 694934953973411840,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 15681320,
"indices": [
0,
12
],
"id_str": "15681320",
"screen_name": "madnewsblog",
"name": "Miss Mad News"
}
],
"hashtags": [
{
"indices": [
22,
28
],
"text": "Kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": "madnewsblog",
"in_reply_to_user_id": 15681320,
"retweet_count": 0,
"id_str": "694934953973411840",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 21384658,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/220231798/SWMarch2011pic1.jpg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/656491777793380352/S4NLKPzS_normal.jpg",
"profile_sidebar_fill_color": "DDFFCC",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/1xgnFbylcN",
"indices": [
0,
23
],
"expanded_url": "http://www.TheRinseOnline.com",
"display_url": "TheRinseOnline.com"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/oO9P2Fv2ty",
"indices": [
35,
58
],
"expanded_url": "http://www.therinseonline.com",
"display_url": "therinseonline.com"
},
{
"url": "https://t.co/zhEeAgPBaO",
"indices": [
86,
109
],
"expanded_url": "http://bit.ly/1BtNluD",
"display_url": "bit.ly/1BtNluD"
}
]
}
},
"followers_count": 1405,
"profile_sidebar_border_color": "BDDCAD",
"id_str": "21384658",
"profile_background_color": "000000",
"listed_count": 29,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 26951,
"description": "Creative | Presenter #TRTS | Blab: https://t.co/oO9P2Fv2ty | Podcast producer & host: https://t.co/zhEeAgPBaO | Writer | Author | Sat in the pipeline....",
"friends_count": 758,
"location": "Amongst Unicorns & Stardust!",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/656491777793380352/S4NLKPzS_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/21384658/1410898875",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/220231798/SWMarch2011pic1.jpg",
"screen_name": "SHERRYLsWorLD",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 81,
"name": "Sherryl Blu",
"notifications": false,
"url": "https://t.co/1xgnFbylcN",
"created_at": "Fri Feb 20 08:57:18 +0000 2009",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": "15681320",
"lang": "und",
"created_at": "Wed Feb 03 17:26:18 +0000 2016",
"in_reply_to_status_id_str": "694923578144333824",
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "how did they know in advance????!!!!!!???? #KanyeWest #Kanye @DaRealAmberRose #wumo #calendar https://t.co/iMiwQEyS2y",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694934675366809601,
"favorite_count": 1,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 155620016,
"indices": [
61,
77
],
"id_str": "155620016",
"screen_name": "DaRealAmberRose",
"name": "Amber Rose"
}
],
"hashtags": [
{
"indices": [
43,
53
],
"text": "KanyeWest"
},
{
"indices": [
54,
60
],
"text": "Kanye"
},
{
"indices": [
78,
83
],
"text": "wumo"
},
{
"indices": [
84,
93
],
"text": "calendar"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/6footer4/status/694934675366809601/photo/1",
"display_url": "pic.twitter.com/iMiwQEyS2y",
"url": "https://t.co/iMiwQEyS2y",
"media_url_https": "https://pbs.twimg.com/media/CaTnZhlUYAAyKxw.jpg",
"id_str": "694934668219539456",
"sizes": {
"large": {
"h": 354,
"resize": "fit",
"w": 1024
},
"small": {
"h": 117,
"resize": "fit",
"w": 340
},
"medium": {
"h": 207,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
94,
117
],
"type": "photo",
"id": 694934668219539456,
"media_url": "http://pbs.twimg.com/media/CaTnZhlUYAAyKxw.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694934675366809601",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 4138694115,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/663956588164751360/Al2Bod-9_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 46,
"profile_sidebar_border_color": "C0DEED",
"id_str": "4138694115",
"profile_background_color": "C0DEED",
"listed_count": 6,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 369,
"description": "controversy",
"friends_count": 199,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/663956588164751360/Al2Bod-9_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/4138694115/1448423376",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "6footer4",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 240,
"name": "Taller than You",
"notifications": false,
"url": null,
"created_at": "Sun Nov 08 03:06:29 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 17:25:12 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#Kanye West clarifies that Waves isn\u2019t the best album of all time https://t.co/3LgQIEMCeu",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694934025354526723,
"favorite_count": 0,
"source": "<a href=\"http://ifttt.com\" rel=\"nofollow\">IFTTT</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "Kanye"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/extremetechlove/status/694934025354526723/photo/1",
"display_url": "pic.twitter.com/3LgQIEMCeu",
"url": "https://t.co/3LgQIEMCeu",
"media_url_https": "https://pbs.twimg.com/media/CaTm0GUW0AYy1fx.jpg",
"id_str": "694934025245478918",
"sizes": {
"small": {
"h": 226,
"resize": "fit",
"w": 340
},
"large": {
"h": 682,
"resize": "fit",
"w": 1024
},
"medium": {
"h": 399,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
66,
89
],
"type": "photo",
"id": 694934025245478918,
"media_url": "http://pbs.twimg.com/media/CaTm0GUW0AYy1fx.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694934025354526723",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2166426854,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000687352021/39c573c9a6e5790e3dd8b69b058aeef0_normal.jpeg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 109,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2166426854",
"profile_background_color": "C0DEED",
"listed_count": 73,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 35804,
"description": "Best of Tech in One Place",
"friends_count": 1,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/378800000687352021/39c573c9a6e5790e3dd8b69b058aeef0_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2166426854/1396512117",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "extremetechlove",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 12,
"name": "Tech Lovers",
"notifications": false,
"url": null,
"created_at": "Thu Oct 31 10:46:15 +0000 2013",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 17:22:37 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#kanyewest #kanye #yeezy #kimkardashian\nhttps://t.co/QfO5saQes5 https://t.co/jnytQJi8XH",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694933999123369984,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
10
],
"text": "kanyewest"
},
{
"indices": [
11,
17
],
"text": "kanye"
},
{
"indices": [
18,
24
],
"text": "yeezy"
},
{
"indices": [
25,
39
],
"text": "kimkardashian"
}
],
"urls": [
{
"url": "https://t.co/QfO5saQes5",
"indices": [
40,
63
],
"expanded_url": "http://www.MyCrazyLifeStory.com/2016Tattoos49",
"display_url": "MyCrazyLifeStory.com/2016Tattoos49"
}
],
"media": [
{
"expanded_url": "http://twitter.com/zyhiludihawi/status/694933999123369984/photo/1",
"display_url": "pic.twitter.com/jnytQJi8XH",
"url": "https://t.co/jnytQJi8XH",
"media_url_https": "https://pbs.twimg.com/media/CaTmyeKWQAA9NTj.jpg",
"id_str": "694933997286211584",
"sizes": {
"large": {
"h": 507,
"resize": "fit",
"w": 507
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 507,
"resize": "fit",
"w": 507
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
64,
87
],
"type": "photo",
"id": 694933997286211584,
"media_url": "http://pbs.twimg.com/media/CaTmyeKWQAA9NTj.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694933999123369984",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": true,
"id": 2416862010,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 33,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2416862010",
"profile_background_color": "C0DEED",
"listed_count": 32,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 3514,
"description": "",
"friends_count": 28,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "zyhiludihawi",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 2954,
"name": "Gweneal Gatheridge",
"notifications": false,
"url": null,
"created_at": "Sat Mar 29 03:34:09 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 17:22:31 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "@FamousDex #kanye go crazy! Bumping that shit heavy",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694933677575380992,
"favorite_count": 1,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 2699105311,
"indices": [
0,
10
],
"id_str": "2699105311",
"screen_name": "FamousDex",
"name": "\u2728Geeky\u2693\ufe0f"
}
],
"hashtags": [
{
"indices": [
11,
17
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": "FamousDex",
"in_reply_to_user_id": 2699105311,
"retweet_count": 0,
"id_str": "694933677575380992",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 1292748620,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/823059115/203877e44a14b1f858037061ba143ceb.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/691124842498752512/I_BmZfO8_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/1gaQrzl6KK",
"indices": [
0,
23
],
"expanded_url": "https://m.soundcloud.com/mean_face",
"display_url": "m.soundcloud.com/mean_face"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/xg5jSmB3AD",
"indices": [
57,
80
],
"expanded_url": "https://foodwithkape.wordpress.com/",
"display_url": "foodwithkape.wordpress.com"
},
{
"url": "https://t.co/qbmHFGRuhS",
"indices": [
81,
104
],
"expanded_url": "http://www.tydavisart.com/",
"display_url": "tydavisart.com"
}
]
}
},
"followers_count": 517,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "1292748620",
"profile_background_color": "C0DEED",
"listed_count": 8,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 2483,
"description": "\u24c2\ufe0fean Face Productions \u24c2\ufe0fean Face Recordes #foodwithkape https://t.co/xg5jSmB3AD https://t.co/qbmHFGRuhS",
"friends_count": 950,
"location": "Charleston, SC",
"profile_link_color": "F00E19",
"profile_image_url": "http://pbs.twimg.com/profile_images/691124842498752512/I_BmZfO8_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1292748620/1453214719",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/823059115/203877e44a14b1f858037061ba143ceb.jpeg",
"screen_name": "KoolKape86",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 1017,
"name": "KOOL KAPE",
"notifications": false,
"url": "https://t.co/1gaQrzl6KK",
"created_at": "Sat Mar 23 22:53:02 +0000 2013",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": "2699105311",
"lang": "en",
"created_at": "Wed Feb 03 17:21:14 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @UKGrime: This is a sad time for #Kanye https://t.co/K8LqgObJPc",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694933543760297985,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 383665643,
"indices": [
3,
11
],
"id_str": "383665643",
"screen_name": "UKGrime",
"name": "UKGrime"
}
],
"hashtags": [
{
"indices": [
36,
42
],
"text": "Kanye"
}
],
"urls": [],
"media": [
{
"source_user_id": 154297611,
"source_status_id_str": "692875189592260612",
"expanded_url": "http://twitter.com/DeMarko_Gage/status/692875189592260612/video/1",
"display_url": "pic.twitter.com/K8LqgObJPc",
"url": "https://t.co/K8LqgObJPc",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692874694911918081/pu/img/LplTkjPs3kb_6aLs.jpg",
"source_user_id_str": "154297611",
"source_status_id": 692875189592260612,
"id_str": "692874694911918081",
"sizes": {
"small": {
"h": 604,
"resize": "fit",
"w": 340
},
"large": {
"h": 1280,
"resize": "fit",
"w": 720
},
"medium": {
"h": 1067,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
43,
66
],
"type": "photo",
"id": 692874694911918081,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692874694911918081/pu/img/LplTkjPs3kb_6aLs.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 321,
"id_str": "694933543760297985",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "This is a sad time for #Kanye https://t.co/K8LqgObJPc",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 693401264953122816,
"favorite_count": 351,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
23,
29
],
"text": "Kanye"
}
],
"urls": [],
"media": [
{
"source_user_id": 154297611,
"source_status_id_str": "692875189592260612",
"expanded_url": "http://twitter.com/DeMarko_Gage/status/692875189592260612/video/1",
"display_url": "pic.twitter.com/K8LqgObJPc",
"url": "https://t.co/K8LqgObJPc",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/692874694911918081/pu/img/LplTkjPs3kb_6aLs.jpg",
"source_user_id_str": "154297611",
"source_status_id": 692875189592260612,
"id_str": "692874694911918081",
"sizes": {
"small": {
"h": 604,
"resize": "fit",
"w": 340
},
"large": {
"h": 1280,
"resize": "fit",
"w": 720
},
"medium": {
"h": 1067,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
30,
53
],
"type": "photo",
"id": 692874694911918081,
"media_url": "http://pbs.twimg.com/ext_tw_video_thumb/692874694911918081/pu/img/LplTkjPs3kb_6aLs.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 321,
"id_str": "693401264953122816",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 383665643,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/570424007292231680/-EWI3ykO.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/693400005516890112/1ZyBURtr_normal.jpg",
"profile_sidebar_fill_color": "DDFFCC",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/MkdiWXF7dG",
"indices": [
0,
23
],
"expanded_url": "http://UKGrime.com",
"display_url": "UKGrime.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 24228,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "383665643",
"profile_background_color": "000000",
"listed_count": 64,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 17498,
"description": "The new platform for UK Grime Music - Creators of the #UKGrimeCypher All enquiries - Contact@UKGrime.com Australian Twitter @UKGrimeOz",
"friends_count": 3031,
"location": "United Kingdom",
"profile_link_color": "ABB8C2",
"profile_image_url": "http://pbs.twimg.com/profile_images/693400005516890112/1ZyBURtr_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/383665643/1454118374",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/570424007292231680/-EWI3ykO.jpeg",
"screen_name": "UKGrime",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 33131,
"name": "UKGrime",
"notifications": false,
"url": "https://t.co/MkdiWXF7dG",
"created_at": "Sun Oct 02 08:50:34 +0000 2011",
"contributors_enabled": false,
"time_zone": "London",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Sat Jan 30 11:51:58 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 860286522,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/693883071532244994/-tYNexIQ_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 474,
"profile_sidebar_border_color": "C0DEED",
"id_str": "860286522",
"profile_background_color": "C0DEED",
"listed_count": 1,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 6987,
"description": "18 | Bristol | Lily\u2764\ufe0f 'The only thing your promised in life is death'",
"friends_count": 326,
"location": "Ksham",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/693883071532244994/-tYNexIQ_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/860286522/1452717102",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "JSheehann",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 3014,
"name": "ja\u00e7kksh\u00ea\u00eahann\u270c",
"notifications": false,
"url": null,
"created_at": "Wed Oct 03 20:26:04 +0000 2012",
"contributors_enabled": false,
"time_zone": "London",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 17:20:42 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "When you start loving a song but are about 10 years late on the hype \ud83d\ude02. #homecoming #kanye \ud83d\udc4c",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694933338948292608,
"favorite_count": 1,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
72,
83
],
"text": "homecoming"
},
{
"indices": [
84,
90
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694933338948292608",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 234560201,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1728334710/image_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 162,
"profile_sidebar_border_color": "C0DEED",
"id_str": "234560201",
"profile_background_color": "C0DEED",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 9594,
"description": "18.Sunderland fan. Edinburgh Uni, Studying Mechanical Engineering. attempt to play Cricket and hockey.",
"friends_count": 203,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/1728334710/image_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "jazim94",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 145,
"name": "jazim sohail",
"notifications": false,
"url": null,
"created_at": "Wed Jan 05 23:38:48 +0000 2011",
"contributors_enabled": false,
"time_zone": "Casablanca",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 17:19:53 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#Kanye, we're confused... Are you being humble? #confused #KanyeWest not being #kanye refreshing #hope !?!",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694932810604404737,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "Kanye"
},
{
"indices": [
48,
57
],
"text": "confused"
},
{
"indices": [
58,
68
],
"text": "KanyeWest"
},
{
"indices": [
79,
85
],
"text": "kanye"
},
{
"indices": [
97,
102
],
"text": "hope"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694932810604404737",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 271851084,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/668360850315546624/AsBrwXjb_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/WwogREztty",
"indices": [
0,
22
],
"expanded_url": "http://justonemorebyfatijaoui.wordpress.com",
"display_url": "justonemorebyfatijaoui.wordpress.com"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/emw8CMYgAb",
"indices": [
102,
125
],
"expanded_url": "http://lnkd.in/nHek92",
"display_url": "lnkd.in/nHek92"
}
]
}
},
"followers_count": 1092,
"profile_sidebar_border_color": "C0DEED",
"id_str": "271851084",
"profile_background_color": "C0DEED",
"listed_count": 87,
"is_translation_enabled": false,
"utc_offset": 3600,
"statuses_count": 5195,
"description": "#wordsoldier - Simplicity is the ultimate sophistication. Leonardo da Vinci - Empower me, if you can. https://t.co/emw8CMYgAb",
"friends_count": 915,
"location": "Paris, France",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/668360850315546624/AsBrwXjb_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/271851084/1448184693",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "fatijaoui",
"lang": "fr",
"profile_background_tile": false,
"favourites_count": 1652,
"name": "Fati_Jaoui",
"notifications": false,
"url": "http://t.co/WwogREztty",
"created_at": "Fri Mar 25 09:21:56 +0000 2011",
"contributors_enabled": false,
"time_zone": "Paris",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 17:17:47 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "@Kennyyyf #kanye???",
"is_quote_status": false,
"in_reply_to_status_id": 694928622780461056,
"id": 694932449281777664,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 586032448,
"indices": [
0,
9
],
"id_str": "586032448",
"screen_name": "Kennyyyf",
"name": "kenny."
}
],
"hashtags": [
{
"indices": [
10,
16
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": "Kennyyyf",
"in_reply_to_user_id": 586032448,
"retweet_count": 0,
"id_str": "694932449281777664",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 2481214015,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/578573759667277824/GulwFTaq_normal.jpeg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 114,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2481214015",
"profile_background_color": "C0DEED",
"listed_count": 3,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 3657,
"description": "Family friends respect",
"friends_count": 466,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/578573759667277824/GulwFTaq_normal.jpeg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2481214015/1399765248",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "jesseroman318",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 10118,
"name": "ROMANbaby89",
"notifications": false,
"url": null,
"created_at": "Wed May 07 03:12:07 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": "586032448",
"lang": "und",
"created_at": "Wed Feb 03 17:16:21 +0000 2016",
"in_reply_to_status_id_str": "694928622780461056",
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @livefrome: #Kanye says he's squashed his beef with #WizKhalifa - are you surprised? We're reading your tweets on #LiveFromE https://t.\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694931064876302336,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 621284187,
"indices": [
3,
13
],
"id_str": "621284187",
"screen_name": "livefrome",
"name": "Live From E!"
}
],
"hashtags": [
{
"indices": [
15,
21
],
"text": "Kanye"
},
{
"indices": [
55,
66
],
"text": "WizKhalifa"
},
{
"indices": [
118,
128
],
"text": "LiveFromE"
}
],
"urls": [],
"media": [
{
"source_user_id": 621284187,
"source_status_id_str": "694908537869217796",
"expanded_url": "http://twitter.com/livefrome/status/694908537869217796/photo/1",
"display_url": "pic.twitter.com/Q0TEWfzpPl",
"url": "https://t.co/Q0TEWfzpPl",
"media_url_https": "https://pbs.twimg.com/media/CaTPofRUMAAFLPP.jpg",
"source_user_id_str": "621284187",
"source_status_id": 694908537869217796,
"id_str": "694908537017741312",
"sizes": {
"small": {
"h": 300,
"resize": "fit",
"w": 300
},
"large": {
"h": 300,
"resize": "fit",
"w": 300
},
"medium": {
"h": 300,
"resize": "fit",
"w": 300
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
139,
140
],
"type": "photo",
"id": 694908537017741312,
"media_url": "http://pbs.twimg.com/media/CaTPofRUMAAFLPP.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 16,
"id_str": "694931064876302336",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "#Kanye says he's squashed his beef with #WizKhalifa - are you surprised? We're reading your tweets on #LiveFromE https://t.co/Q0TEWfzpPl",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694908537869217796,
"favorite_count": 51,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "Kanye"
},
{
"indices": [
40,
51
],
"text": "WizKhalifa"
},
{
"indices": [
103,
113
],
"text": "LiveFromE"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/livefrome/status/694908537869217796/photo/1",
"display_url": "pic.twitter.com/Q0TEWfzpPl",
"url": "https://t.co/Q0TEWfzpPl",
"media_url_https": "https://pbs.twimg.com/media/CaTPofRUMAAFLPP.jpg",
"id_str": "694908537017741312",
"sizes": {
"small": {
"h": 300,
"resize": "fit",
"w": 300
},
"large": {
"h": 300,
"resize": "fit",
"w": 300
},
"medium": {
"h": 300,
"resize": "fit",
"w": 300
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
114,
137
],
"type": "photo",
"id": 694908537017741312,
"media_url": "http://pbs.twimg.com/media/CaTPofRUMAAFLPP.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 16,
"id_str": "694908537869217796",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 621284187,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/600283416/e5s6gy3l0oe5qsed53mr.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/580116409360867328/8EPXo85Z_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/PaS7OuA1cs",
"indices": [
0,
22
],
"expanded_url": "http://eonline.com",
"display_url": "eonline.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 51015,
"profile_sidebar_border_color": "C0DEED",
"id_str": "621284187",
"profile_background_color": "C0DEED",
"listed_count": 156,
"is_translation_enabled": false,
"utc_offset": -25200,
"statuses_count": 5638,
"description": "Pop into our studio weekdays at 12:30p ET | 9:30a PT and join the conversation! #LiveFromE",
"friends_count": 59,
"location": "Los Angeles, CA",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/580116409360867328/8EPXo85Z_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/600283416/e5s6gy3l0oe5qsed53mr.jpeg",
"screen_name": "livefrome",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 113,
"name": "Live From E!",
"notifications": false,
"url": "http://t.co/PaS7OuA1cs",
"created_at": "Thu Jun 28 18:30:12 +0000 2012",
"contributors_enabled": false,
"time_zone": "Arizona",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 15:41:20 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 945994220,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/451595344598425600/rMdWcXit.jpeg",
"verified": false,
"profile_text_color": "3D1957",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/694204438987313153/9IRHAnA1_normal.jpg",
"profile_sidebar_fill_color": "7AC3EE",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 99,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "945994220",
"profile_background_color": "642D8B",
"listed_count": 2,
"is_translation_enabled": false,
"utc_offset": 7200,
"statuses_count": 1929,
"description": "Be amazing. Be good. Be pretty. Be strong. Be smart. Be cool. But the most important thing is, be yourself.#SelfLove",
"friends_count": 145,
"location": "Botswana",
"profile_link_color": "884455",
"profile_image_url": "http://pbs.twimg.com/profile_images/694204438987313153/9IRHAnA1_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/945994220/1437391234",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/451595344598425600/rMdWcXit.jpeg",
"screen_name": "One_is_bae",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 94,
"name": "#HashtagBae",
"notifications": false,
"url": null,
"created_at": "Tue Nov 13 15:32:19 +0000 2012",
"contributors_enabled": false,
"time_zone": "Pretoria",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 17:10:51 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#joshduhamel #jayz #jcole #kanye\nhttps://t.co/bGr6zEPSbA https://t.co/1FNupDqHGp",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694930330655068160,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
12
],
"text": "joshduhamel"
},
{
"indices": [
13,
18
],
"text": "jayz"
},
{
"indices": [
19,
25
],
"text": "jcole"
},
{
"indices": [
26,
32
],
"text": "kanye"
}
],
"urls": [
{
"url": "https://t.co/bGr6zEPSbA",
"indices": [
33,
56
],
"expanded_url": "http://www.MyCrazyLifeStory.com/2016Tattoos48?ckF57",
"display_url": "MyCrazyLifeStory.com/2016Tattoos48?\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/lunapakekef/status/694930330655068160/photo/1",
"display_url": "pic.twitter.com/1FNupDqHGp",
"url": "https://t.co/1FNupDqHGp",
"media_url_https": "https://pbs.twimg.com/media/CaTjc91W4AE3CP_.jpg",
"id_str": "694930329296101377",
"sizes": {
"large": {
"h": 507,
"resize": "fit",
"w": 507
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 507,
"resize": "fit",
"w": 507
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
57,
80
],
"type": "photo",
"id": 694930329296101377,
"media_url": "http://pbs.twimg.com/media/CaTjc91W4AE3CP_.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694930330655068160",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": true,
"id": 2416860818,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 48,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2416860818",
"profile_background_color": "C0DEED",
"listed_count": 26,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 3383,
"description": "",
"friends_count": 36,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "lunapakekef",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 2986,
"name": "Achyan Benoix",
"notifications": false,
"url": null,
"created_at": "Sat Mar 29 03:30:40 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 17:07:56 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#KimKardashian #Kanye #celebswhosaidit #quoteoftheday https://t.co/5r0Rc64EyE",
"is_quote_status": true,
"in_reply_to_status_id": null,
"id": 694930263319531521,
"favorite_count": 0,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
14
],
"text": "KimKardashian"
},
{
"indices": [
15,
21
],
"text": "Kanye"
},
{
"indices": [
22,
38
],
"text": "celebswhosaidit"
},
{
"indices": [
39,
53
],
"text": "quoteoftheday"
}
],
"urls": [
{
"url": "https://t.co/5r0Rc64EyE",
"indices": [
55,
78
],
"expanded_url": "https://twitter.com/Celebswhosaidit/status/694571228674150400",
"display_url": "twitter.com/Celebswhosaidi\u2026"
}
]
},
"quoted_status_id": 694571228674150400,
"retweeted": false,
"coordinates": null,
"quoted_status": {
"contributors": null,
"truncated": false,
"text": "Who said it? #KanyeWest #KimKardashian #georgebush #Obama #dinner #Apple #motto #quoteoftheday #quote #tv #music https://t.co/aokSPiEdcD",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694571228674150400,
"favorite_count": 2,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
13,
23
],
"text": "KanyeWest"
},
{
"indices": [
24,
38
],
"text": "KimKardashian"
},
{
"indices": [
39,
50
],
"text": "georgebush"
},
{
"indices": [
51,
57
],
"text": "Obama"
},
{
"indices": [
58,
65
],
"text": "dinner"
},
{
"indices": [
67,
73
],
"text": "Apple"
},
{
"indices": [
74,
80
],
"text": "motto"
},
{
"indices": [
81,
95
],
"text": "quoteoftheday"
},
{
"indices": [
96,
102
],
"text": "quote"
},
{
"indices": [
103,
106
],
"text": "tv"
},
{
"indices": [
107,
113
],
"text": "music"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/Celebswhosaidit/status/694571228674150400/photo/1",
"display_url": "pic.twitter.com/aokSPiEdcD",
"url": "https://t.co/aokSPiEdcD",
"media_url_https": "https://pbs.twimg.com/media/CaOc2gVVIAAkft5.png",
"id_str": "694571227751456768",
"sizes": {
"small": {
"h": 510,
"resize": "fit",
"w": 340
},
"large": {
"h": 960,
"resize": "fit",
"w": 640
},
"medium": {
"h": 900,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
114,
137
],
"type": "photo",
"id": 694571227751456768,
"media_url": "http://pbs.twimg.com/media/CaOc2gVVIAAkft5.png"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694571228674150400",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 4345356681,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/692096887936151556/JnKinHNE_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/pDabxkw39T",
"indices": [
0,
23
],
"expanded_url": "https://itunes.apple.com/ca/app/celebs-who-said-it/id1059919715?mt=8",
"display_url": "itunes.apple.com/ca/app/celebs-\u2026"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 239,
"profile_sidebar_border_color": "C0DEED",
"id_str": "4345356681",
"profile_background_color": "C0DEED",
"listed_count": 6,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 14,
"description": "Celeb Trivia Game -AppStore",
"friends_count": 486,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/692096887936151556/JnKinHNE_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/4345356681/1453843767",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "Celebswhosaidit",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 12,
"name": "Celebs Who Said It?",
"notifications": false,
"url": "https://t.co/pDabxkw39T",
"created_at": "Wed Dec 02 01:08:51 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Tue Feb 02 17:21:00 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694930263319531521",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 4866849983,
"profile_background_image_url_https": null,
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/693839654420742144/cp_AsJxR_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 2,
"profile_sidebar_border_color": "C0DEED",
"id_str": "4866849983",
"profile_background_color": "F5F8FA",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 11,
"description": "",
"friends_count": 9,
"location": "",
"profile_link_color": "2B7BB9",
"profile_image_url": "http://pbs.twimg.com/profile_images/693839654420742144/cp_AsJxR_normal.png",
"following": false,
"geo_enabled": false,
"profile_background_image_url": null,
"screen_name": "TwittTwuitt",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 9,
"name": "Famous Guy",
"notifications": false,
"url": null,
"created_at": "Sun Jan 31 16:44:29 +0000 2016",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 17:07:40 +0000 2016",
"quoted_status_id_str": "694571228674150400",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @UKGrime: Some of yall love #kanye so much you won't retweet this \ud83d\ude02 @Urbanimated https://t.co/1Fjj5q2GJU",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694929722942349312,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 383665643,
"indices": [
3,
11
],
"id_str": "383665643",
"screen_name": "UKGrime",
"name": "UKGrime"
},
{
"id": 150041565,
"indices": [
71,
83
],
"id_str": "150041565",
"screen_name": "Urbanimated",
"name": "J. King"
}
],
"hashtags": [
{
"indices": [
31,
37
],
"text": "kanye"
}
],
"urls": [],
"media": [
{
"source_user_id": 383665643,
"source_status_id_str": "692488670545338368",
"expanded_url": "http://twitter.com/UKGrime/status/692488670545338368/photo/1",
"display_url": "pic.twitter.com/1Fjj5q2GJU",
"url": "https://t.co/1Fjj5q2GJU",
"media_url_https": "https://pbs.twimg.com/media/CZw2w33WEAAWsL3.jpg",
"source_user_id_str": "383665643",
"source_status_id": 692488670545338368,
"id_str": "692488655965917184",
"sizes": {
"large": {
"h": 1000,
"resize": "fit",
"w": 1000
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 600,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
84,
107
],
"type": "photo",
"id": 692488655965917184,
"media_url": "http://pbs.twimg.com/media/CZw2w33WEAAWsL3.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 874,
"id_str": "694929722942349312",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "Some of yall love #kanye so much you won't retweet this \ud83d\ude02 @Urbanimated https://t.co/1Fjj5q2GJU",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 692488670545338368,
"favorite_count": 450,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 150041565,
"indices": [
58,
70
],
"id_str": "150041565",
"screen_name": "Urbanimated",
"name": "J. King"
}
],
"hashtags": [
{
"indices": [
18,
24
],
"text": "kanye"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/UKGrime/status/692488670545338368/photo/1",
"display_url": "pic.twitter.com/1Fjj5q2GJU",
"url": "https://t.co/1Fjj5q2GJU",
"media_url_https": "https://pbs.twimg.com/media/CZw2w33WEAAWsL3.jpg",
"id_str": "692488655965917184",
"sizes": {
"large": {
"h": 1000,
"resize": "fit",
"w": 1000
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 600,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
71,
94
],
"type": "photo",
"id": 692488655965917184,
"media_url": "http://pbs.twimg.com/media/CZw2w33WEAAWsL3.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 874,
"id_str": "692488670545338368",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 383665643,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/570424007292231680/-EWI3ykO.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/693400005516890112/1ZyBURtr_normal.jpg",
"profile_sidebar_fill_color": "DDFFCC",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/MkdiWXF7dG",
"indices": [
0,
23
],
"expanded_url": "http://UKGrime.com",
"display_url": "UKGrime.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 24228,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "383665643",
"profile_background_color": "000000",
"listed_count": 64,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 17498,
"description": "The new platform for UK Grime Music - Creators of the #UKGrimeCypher All enquiries - Contact@UKGrime.com Australian Twitter @UKGrimeOz",
"friends_count": 3031,
"location": "United Kingdom",
"profile_link_color": "ABB8C2",
"profile_image_url": "http://pbs.twimg.com/profile_images/693400005516890112/1ZyBURtr_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/383665643/1454118374",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/570424007292231680/-EWI3ykO.jpeg",
"screen_name": "UKGrime",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 33131,
"name": "UKGrime",
"notifications": false,
"url": "https://t.co/MkdiWXF7dG",
"created_at": "Sun Oct 02 08:50:34 +0000 2011",
"contributors_enabled": false,
"time_zone": "London",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Jan 27 23:25:39 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 2534497047,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/687340524496355328/cJ4nBmEF_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/1hsmeJjP6i",
"indices": [
0,
23
],
"expanded_url": "http://WWW.FOH.COM",
"display_url": "FOH.COM"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 591,
"profile_sidebar_border_color": "000000",
"id_str": "2534497047",
"profile_background_color": "FA743E",
"listed_count": 2,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 12802,
"description": "BE THE CHANGE YOU WANT TO SEE #CHS#278",
"friends_count": 906,
"location": "CHASING MY DREAMS",
"profile_link_color": "FA743E",
"profile_image_url": "http://pbs.twimg.com/profile_images/687340524496355328/cJ4nBmEF_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2534497047/1452792023",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "A1_MIL_",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 3049,
"name": "WP_\u303d\ufe0f\u00cc\u0141",
"notifications": false,
"url": "https://t.co/1hsmeJjP6i",
"created_at": "Wed May 07 23:32:17 +0000 2014",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 17:05:31 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Really #science? Scientists have discovered what causes Resting Bitch Face https://t.co/wOGxAaBP29 #Kanye @AnnaKendrick47",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694928798987452418,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 59949396,
"indices": [
107,
122
],
"id_str": "59949396",
"screen_name": "AnnaKendrick47",
"name": "Anna Kendrick"
}
],
"hashtags": [
{
"indices": [
7,
15
],
"text": "science"
},
{
"indices": [
100,
106
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/wOGxAaBP29",
"indices": [
76,
99
],
"expanded_url": "http://wpo.st/OVl81",
"display_url": "wpo.st/OVl81"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694928798987452418",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 4038645612,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/659096680432730112/znvLF7GD_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 163,
"profile_sidebar_border_color": "000000",
"id_str": "4038645612",
"profile_background_color": "000000",
"listed_count": 10,
"is_translation_enabled": false,
"utc_offset": -21600,
"statuses_count": 251,
"description": "Technology enthusiast, cloud and hosting expert, science and music lover.",
"friends_count": 570,
"location": "Austin, TX",
"profile_link_color": "4A913C",
"profile_image_url": "http://pbs.twimg.com/profile_images/659096680432730112/znvLF7GD_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "JasonBalcauski",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 192,
"name": "Jason Balcauski",
"notifications": false,
"url": null,
"created_at": "Tue Oct 27 19:43:02 +0000 2015",
"contributors_enabled": false,
"time_zone": "Central Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 17:01:51 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Lots of thuglife rappers get fingered but not like that....\n#Kanye",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694928706222080000,
"favorite_count": 0,
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Mobile Web (M5)</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
60,
66
],
"text": "Kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694928706222080000",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 491754307,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/461600001735413761/esJEWYSw.jpeg",
"verified": false,
"profile_text_color": "3D1957",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/665274214211948544/CggmjBB6_normal.jpg",
"profile_sidebar_fill_color": "7AC3EE",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 357,
"profile_sidebar_border_color": "000000",
"id_str": "491754307",
"profile_background_color": "1E0630",
"listed_count": 6,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 21268,
"description": "Alleged writer, actor, funnyman, & ne'erdowell...",
"friends_count": 349,
"location": "CITY OF ANGELS",
"profile_link_color": "820E82",
"profile_image_url": "http://pbs.twimg.com/profile_images/665274214211948544/CggmjBB6_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/491754307/1432159731",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/461600001735413761/esJEWYSw.jpeg",
"screen_name": "MORNAFAN93",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 37009,
"name": "JOE DOE",
"notifications": false,
"url": null,
"created_at": "Tue Feb 14 00:11:02 +0000 2012",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 17:01:29 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#joshduhamel #jayz #jcole #kanye\nhttps://t.co/uJAyRdH8ye https://t.co/af2FOyAzOg",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694928584012623872,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
12
],
"text": "joshduhamel"
},
{
"indices": [
13,
18
],
"text": "jayz"
},
{
"indices": [
19,
25
],
"text": "jcole"
},
{
"indices": [
26,
32
],
"text": "kanye"
}
],
"urls": [
{
"url": "https://t.co/uJAyRdH8ye",
"indices": [
33,
56
],
"expanded_url": "http://www.MyCrazyLifeStory.com/2016Tattoos48?jCy",
"display_url": "MyCrazyLifeStory.com/2016Tattoos48?\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/pejefizunig/status/694928584012623872/photo/1",
"display_url": "pic.twitter.com/af2FOyAzOg",
"url": "https://t.co/af2FOyAzOg",
"media_url_https": "https://pbs.twimg.com/media/CaTh3SfUcAAiF2R.jpg",
"id_str": "694928582494154752",
"sizes": {
"large": {
"h": 507,
"resize": "fit",
"w": 507
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 507,
"resize": "fit",
"w": 507
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
57,
80
],
"type": "photo",
"id": 694928582494154752,
"media_url": "http://pbs.twimg.com/media/CaTh3SfUcAAiF2R.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694928584012623872",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": true,
"id": 2416859244,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 41,
"profile_sidebar_border_color": "C0DEED",
"id_str": "2416859244",
"profile_background_color": "C0DEED",
"listed_count": 30,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 3514,
"description": "",
"friends_count": 30,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "pejefizunig",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 2909,
"name": "Takeya Lummis",
"notifications": false,
"url": null,
"created_at": "Sat Mar 29 03:31:22 +0000 2014",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "und",
"created_at": "Wed Feb 03 17:01:00 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "und",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "The #Kanye and #Wiz twitter beef is officially over. We can all carry on with our day to day lives now. https://t.co/44ZrBWNyka",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694928519961407492,
"favorite_count": 0,
"source": "<a href=\"http://www.hootsuite.com\" rel=\"nofollow\">Hootsuite</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
4,
10
],
"text": "Kanye"
},
{
"indices": [
15,
19
],
"text": "Wiz"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/wats_newz/status/694928519961407492/photo/1",
"display_url": "pic.twitter.com/44ZrBWNyka",
"url": "https://t.co/44ZrBWNyka",
"media_url_https": "https://pbs.twimg.com/media/CaThzoCVIAARpQK.jpg",
"id_str": "694928519558668288",
"sizes": {
"small": {
"h": 255,
"resize": "fit",
"w": 340
},
"large": {
"h": 600,
"resize": "fit",
"w": 800
},
"medium": {
"h": 450,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
104,
127
],
"type": "photo",
"id": 694928519558668288,
"media_url": "http://pbs.twimg.com/media/CaThzoCVIAARpQK.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694928519961407492",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 4825141984,
"profile_background_image_url_https": null,
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/694570206882979840/yrmgHOTm_normal.png",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 6,
"profile_sidebar_border_color": "C0DEED",
"id_str": "4825141984",
"profile_background_color": "F5F8FA",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 17,
"description": "All The News, All The Time.",
"friends_count": 38,
"location": "",
"profile_link_color": "2B7BB9",
"profile_image_url": "http://pbs.twimg.com/profile_images/694570206882979840/yrmgHOTm_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/4825141984/1454433426",
"profile_background_image_url": null,
"screen_name": "wats_newz",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 0,
"name": "Wats Newz",
"notifications": false,
"url": null,
"created_at": "Mon Jan 18 19:32:08 +0000 2016",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 17:00:44 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @WHHLapp: #wizkhalifa X @nessnitty talk #kanye apology, relationship and music @hot97 @whhlapp https://t.co/O6lZCMYy4o https://t.co/FU80\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694927806732566529,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 3137248178,
"indices": [
3,
11
],
"id_str": "3137248178",
"screen_name": "WHHLapp",
"name": "Where Hip Hop Lives"
},
{
"id": 18827300,
"indices": [
27,
37
],
"id_str": "18827300",
"screen_name": "nessnitty",
"name": "NESSA"
},
{
"id": 14854462,
"indices": [
82,
88
],
"id_str": "14854462",
"screen_name": "HOT97",
"name": "HOT 97"
},
{
"id": 3137248178,
"indices": [
89,
97
],
"id_str": "3137248178",
"screen_name": "WHHLapp",
"name": "Where Hip Hop Lives"
}
],
"hashtags": [
{
"indices": [
13,
24
],
"text": "wizkhalifa"
},
{
"indices": [
43,
49
],
"text": "kanye"
}
],
"urls": [
{
"url": "https://t.co/O6lZCMYy4o",
"indices": [
98,
121
],
"expanded_url": "http://ift.tt/1P6BDtD",
"display_url": "ift.tt/1P6BDtD"
}
],
"media": [
{
"source_user_id": 3137248178,
"source_status_id_str": "694918045698015232",
"expanded_url": "http://twitter.com/WHHLapp/status/694918045698015232/photo/1",
"display_url": "pic.twitter.com/FU80BGrKzK",
"url": "https://t.co/FU80BGrKzK",
"media_url_https": "https://pbs.twimg.com/media/CaTYR9lWYAA94Kk.jpg",
"source_user_id_str": "3137248178",
"source_status_id": 694918045698015232,
"id_str": "694918045622493184",
"sizes": {
"large": {
"h": 859,
"resize": "fit",
"w": 859
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 600,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
122,
140
],
"type": "photo",
"id": 694918045622493184,
"media_url": "http://pbs.twimg.com/media/CaTYR9lWYAA94Kk.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694927806732566529",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "#wizkhalifa X @nessnitty talk #kanye apology, relationship and music @hot97 @whhlapp https://t.co/O6lZCMYy4o https://t.co/FU80BGrKzK",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694918045698015232,
"favorite_count": 1,
"source": "<a href=\"http://ifttt.com\" rel=\"nofollow\">IFTTT</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 18827300,
"indices": [
14,
24
],
"id_str": "18827300",
"screen_name": "nessnitty",
"name": "NESSA"
},
{
"id": 14854462,
"indices": [
69,
75
],
"id_str": "14854462",
"screen_name": "HOT97",
"name": "HOT 97"
},
{
"id": 3137248178,
"indices": [
76,
84
],
"id_str": "3137248178",
"screen_name": "WHHLapp",
"name": "Where Hip Hop Lives"
}
],
"hashtags": [
{
"indices": [
0,
11
],
"text": "wizkhalifa"
},
{
"indices": [
30,
36
],
"text": "kanye"
}
],
"urls": [
{
"url": "https://t.co/O6lZCMYy4o",
"indices": [
85,
108
],
"expanded_url": "http://ift.tt/1P6BDtD",
"display_url": "ift.tt/1P6BDtD"
}
],
"media": [
{
"expanded_url": "http://twitter.com/WHHLapp/status/694918045698015232/photo/1",
"display_url": "pic.twitter.com/FU80BGrKzK",
"url": "https://t.co/FU80BGrKzK",
"media_url_https": "https://pbs.twimg.com/media/CaTYR9lWYAA94Kk.jpg",
"id_str": "694918045622493184",
"sizes": {
"large": {
"h": 859,
"resize": "fit",
"w": 859
},
"small": {
"h": 340,
"resize": "fit",
"w": 340
},
"medium": {
"h": 600,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
109,
132
],
"type": "photo",
"id": 694918045622493184,
"media_url": "http://pbs.twimg.com/media/CaTYR9lWYAA94Kk.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694918045698015232",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 3137248178,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/598970294456307713/A3yddQ56_normal.png",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/rOIWF0HaDB",
"indices": [
0,
22
],
"expanded_url": "http://www.wherehiphoplives.com",
"display_url": "wherehiphoplives.com"
}
]
},
"description": {
"urls": [
{
"url": "http://t.co/s2Y2Lldmns",
"indices": [
21,
43
],
"expanded_url": "http://smarturl.it/WhereHipHopLives",
"display_url": "smarturl.it/WhereHipHopLiv\u2026"
},
{
"url": "http://t.co/l4APY9fChf",
"indices": [
62,
84
],
"expanded_url": "http://www.wherehiphoplives.com/locator.html",
"display_url": "wherehiphoplives.com/locator.html"
}
]
}
},
"followers_count": 1025,
"profile_sidebar_border_color": "000000",
"id_str": "3137248178",
"profile_background_color": "000000",
"listed_count": 22,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 3868,
"description": "download the US app: http://t.co/s2Y2Lldmns International: http://t.co/l4APY9fChf",
"friends_count": 208,
"location": "world wide! ",
"profile_link_color": "B29444",
"profile_image_url": "http://pbs.twimg.com/profile_images/598970294456307713/A3yddQ56_normal.png",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3137248178/1433700270",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "WHHLapp",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 352,
"name": "Where Hip Hop Lives",
"notifications": false,
"url": "http://t.co/rOIWF0HaDB",
"created_at": "Fri Apr 03 18:29:06 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 16:19:07 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 130263684,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/681177426177724417/_t6pyBK2_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 251,
"profile_sidebar_border_color": "000000",
"id_str": "130263684",
"profile_background_color": "000000",
"listed_count": 11,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 2522,
"description": "Student",
"friends_count": 2077,
"location": "London",
"profile_link_color": "DD2E44",
"profile_image_url": "http://pbs.twimg.com/profile_images/681177426177724417/_t6pyBK2_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/130263684/1451240328",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif",
"screen_name": "icancapturelife",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 267,
"name": "Leonie",
"notifications": false,
"url": null,
"created_at": "Tue Apr 06 20:22:56 +0000 2010",
"contributors_enabled": false,
"time_zone": "London",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": true,
"lang": "en",
"created_at": "Wed Feb 03 16:57:54 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @KPThePhenomenal: @CaddyPack https://t.co/HN5LhoCKQ6 #ThrowBackRhymesWednesday #YAY #Kanye\ninfo@caddypackcom https://t.co/6tnW6eu73u",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694926664019632128,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 433954433,
"indices": [
3,
19
],
"id_str": "433954433",
"screen_name": "KPThePhenomenal",
"name": "Antonio Platt"
},
{
"id": 38017743,
"indices": [
21,
31
],
"id_str": "38017743",
"screen_name": "CaddyPack",
"name": "Caddy Pack"
}
],
"hashtags": [
{
"indices": [
56,
81
],
"text": "ThrowBackRhymesWednesday"
},
{
"indices": [
82,
86
],
"text": "YAY"
},
{
"indices": [
87,
93
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/HN5LhoCKQ6",
"indices": [
32,
55
],
"expanded_url": "http://www.caddypack.com",
"display_url": "caddypack.com"
},
{
"url": "https://t.co/6tnW6eu73u",
"indices": [
112,
135
],
"expanded_url": "http://fb.me/78ueslTSB",
"display_url": "fb.me/78ueslTSB"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 2,
"id_str": "694926664019632128",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "@CaddyPack https://t.co/HN5LhoCKQ6 #ThrowBackRhymesWednesday #YAY #Kanye\ninfo@caddypackcom https://t.co/6tnW6eu73u",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694875340963979268,
"favorite_count": 2,
"source": "<a href=\"http://www.facebook.com/twitter\" rel=\"nofollow\">Facebook</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 38017743,
"indices": [
0,
10
],
"id_str": "38017743",
"screen_name": "CaddyPack",
"name": "Caddy Pack"
}
],
"hashtags": [
{
"indices": [
35,
60
],
"text": "ThrowBackRhymesWednesday"
},
{
"indices": [
61,
65
],
"text": "YAY"
},
{
"indices": [
66,
72
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/HN5LhoCKQ6",
"indices": [
11,
34
],
"expanded_url": "http://www.caddypack.com",
"display_url": "caddypack.com"
},
{
"url": "https://t.co/6tnW6eu73u",
"indices": [
91,
114
],
"expanded_url": "http://fb.me/78ueslTSB",
"display_url": "fb.me/78ueslTSB"
}
]
},
"in_reply_to_screen_name": "CaddyPack",
"in_reply_to_user_id": 38017743,
"retweet_count": 2,
"id_str": "694875340963979268",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 433954433,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/449477568651993089/zM-Bm4D-.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000415051280/21b3fbb2f3609abcbfc4fd40c0b4b8f3_normal.jpeg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/sXusreVxzh",
"indices": [
0,
22
],
"expanded_url": "http://goo.gl/sTZYK5",
"display_url": "goo.gl/sTZYK5"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/N6E3yAHmp6",
"indices": [
0,
23
],
"expanded_url": "http://goo.gl/RXq2UR",
"display_url": "goo.gl/RXq2UR"
},
{
"url": "https://t.co/r6ZFZgf09h",
"indices": [
40,
63
],
"expanded_url": "http://goo.gl/jJUPDb",
"display_url": "goo.gl/jJUPDb"
},
{
"url": "https://t.co/dIcXfYD3IJ",
"indices": [
66,
89
],
"expanded_url": "https://goo.gl/tbzKvV",
"display_url": "goo.gl/tbzKvV"
},
{
"url": "https://t.co/LKySdWJuDt",
"indices": [
92,
115
],
"expanded_url": "http://goo.gl/W9D8KA",
"display_url": "goo.gl/W9D8KA"
},
{
"url": "https://t.co/C8I24WBDgb",
"indices": [
118,
141
],
"expanded_url": "http://www.bronco-iradio.com",
"display_url": "bronco-iradio.com"
}
]
}
},
"followers_count": 5038,
"profile_sidebar_border_color": "000000",
"id_str": "433954433",
"profile_background_color": "C0DEED",
"listed_count": 23,
"is_translation_enabled": false,
"utc_offset": 28800,
"statuses_count": 45556,
"description": "https://t.co/N6E3yAHmp6 \u00b7 @CaddyPack \u00b7 https://t.co/r6ZFZgf09h \u00b7 https://t.co/dIcXfYD3IJ \u00b7 https://t.co/LKySdWJuDt \u00b7 https://t.co/C8I24WBDgb",
"friends_count": 1980,
"location": "Kenly, NC",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/378800000415051280/21b3fbb2f3609abcbfc4fd40c0b4b8f3_normal.jpeg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/433954433/1452847256",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/449477568651993089/zM-Bm4D-.png",
"screen_name": "KPThePhenomenal",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 9224,
"name": "Antonio Platt",
"notifications": false,
"url": "http://t.co/sXusreVxzh",
"created_at": "Sun Dec 11 07:05:43 +0000 2011",
"contributors_enabled": false,
"time_zone": "Irkutsk",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": "38017743",
"possibly_sensitive": false,
"lang": "es",
"created_at": "Wed Feb 03 13:29:26 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "es",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 1959592717,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000094111669/c6b9974ac29e9ea8f394675a4b72de17.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/691101810090708992/eHI9YMbU_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/yiOMayuWMi",
"indices": [
0,
23
],
"expanded_url": "https://goo.gl/KBxSW3",
"display_url": "goo.gl/KBxSW3"
}
]
},
"description": {
"urls": [
{
"url": "https://t.co/7RoLVwYAHl",
"indices": [
0,
23
],
"expanded_url": "http://goo.gl/tCF5WE",
"display_url": "goo.gl/tCF5WE"
},
{
"url": "https://t.co/sXusreVxzh",
"indices": [
26,
49
],
"expanded_url": "http://goo.gl/sTZYK5",
"display_url": "goo.gl/sTZYK5"
},
{
"url": "https://t.co/LKySdWJuDt",
"indices": [
52,
75
],
"expanded_url": "http://goo.gl/W9D8KA",
"display_url": "goo.gl/W9D8KA"
},
{
"url": "https://t.co/btN4uLhR9K",
"indices": [
78,
101
],
"expanded_url": "http://goo.gl/l1raa8",
"display_url": "goo.gl/l1raa8"
},
{
"url": "https://t.co/8exZtcu7TU",
"indices": [
105,
128
],
"expanded_url": "http://goo.gl/tr8mLw",
"display_url": "goo.gl/tr8mLw"
},
{
"url": "https://t.co/G0ushXJ3Ga",
"indices": [
131,
154
],
"expanded_url": "https://goo.gl/CNyTwj",
"display_url": "goo.gl/CNyTwj"
}
]
}
},
"followers_count": 539,
"profile_sidebar_border_color": "000000",
"id_str": "1959592717",
"profile_background_color": "C0DEED",
"listed_count": 19,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 16324,
"description": "https://t.co/7RoLVwYAHl \u00b7 https://t.co/sXusreVxzh \u00b7 https://t.co/LKySdWJuDt \u00b7 https://t.co/btN4uLhR9K \u00b7 https://t.co/8exZtcu7TU \u00b7 https://t.co/G0ushXJ3Ga \u00b7",
"friends_count": 434,
"location": "Carolina",
"profile_link_color": "4A913C",
"profile_image_url": "http://pbs.twimg.com/profile_images/691101810090708992/eHI9YMbU_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1959592717/1453606454",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000094111669/c6b9974ac29e9ea8f394675a4b72de17.jpeg",
"screen_name": "Tru_Brilliance",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 11195,
"name": "TruBrillEnt",
"notifications": false,
"url": "https://t.co/yiOMayuWMi",
"created_at": "Sun Oct 13 23:29:41 +0000 2013",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "es",
"created_at": "Wed Feb 03 16:53:22 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "es",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "by annamaeosterhousebikinigirl: #d5100 #clup #igerslondon #chocolate #kanye #austin #homedepot #s4 #jesucristo #col\u2026 https://t.co/OW3r85Yiaw",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694926257922928640,
"favorite_count": 0,
"source": "<a href=\"http://ifttt.com\" rel=\"nofollow\">IFTTT</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
32,
38
],
"text": "d5100"
},
{
"indices": [
39,
44
],
"text": "clup"
},
{
"indices": [
45,
57
],
"text": "igerslondon"
},
{
"indices": [
58,
68
],
"text": "chocolate"
},
{
"indices": [
69,
75
],
"text": "kanye"
},
{
"indices": [
76,
83
],
"text": "austin"
},
{
"indices": [
84,
94
],
"text": "homedepot"
},
{
"indices": [
95,
98
],
"text": "s4"
},
{
"indices": [
99,
110
],
"text": "jesucristo"
},
{
"indices": [
111,
115
],
"text": "col"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/NatlParksPhotos/status/694926257922928640/photo/1",
"display_url": "pic.twitter.com/OW3r85Yiaw",
"url": "https://t.co/OW3r85Yiaw",
"media_url_https": "https://pbs.twimg.com/media/CaTfv-VWwAAzxsb.jpg",
"id_str": "694926257801314304",
"sizes": {
"small": {
"h": 320,
"resize": "fit",
"w": 320
},
"large": {
"h": 320,
"resize": "fit",
"w": 320
},
"medium": {
"h": 320,
"resize": "fit",
"w": 320
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
117,
140
],
"type": "photo",
"id": 694926257801314304,
"media_url": "http://pbs.twimg.com/media/CaTfv-VWwAAzxsb.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694926257922928640",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 558940224,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/2305843363/leqha8qaqwyjh9p9wx0k_normal.jpeg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/9spXHnvIVI",
"indices": [
0,
22
],
"expanded_url": "http://www.GroupTweet.com",
"display_url": "GroupTweet.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 7113,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "558940224",
"profile_background_color": "C0DEED",
"listed_count": 868,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 125910,
"description": "This is a GroupTweet account! Want to Tweet your photos from this account to all our followers? Send an email to usnp@GroupTweet to learn how!",
"friends_count": 134,
"location": "USA",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/2305843363/leqha8qaqwyjh9p9wx0k_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/558940224/1347977536",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "NatlParksPhotos",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 2,
"name": "NationalParks Photos",
"notifications": false,
"url": "http://t.co/9spXHnvIVI",
"created_at": "Fri Apr 20 18:48:19 +0000 2012",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": true,
"lang": "en",
"created_at": "Wed Feb 03 16:51:45 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Jacky\u2019s #Report \u2013 #Amber #Rose #Makes #Peace With Kim K #After #Kanye #Twitter #Beef https://t.co/GJj7oVHSab #random",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694924923513540609,
"favorite_count": 0,
"source": "<a href=\"http://www.google.com/\" rel=\"nofollow\">Google</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
8,
15
],
"text": "Report"
},
{
"indices": [
18,
24
],
"text": "Amber"
},
{
"indices": [
25,
30
],
"text": "Rose"
},
{
"indices": [
31,
37
],
"text": "Makes"
},
{
"indices": [
38,
44
],
"text": "Peace"
},
{
"indices": [
56,
62
],
"text": "After"
},
{
"indices": [
63,
69
],
"text": "Kanye"
},
{
"indices": [
70,
78
],
"text": "Twitter"
},
{
"indices": [
79,
84
],
"text": "Beef"
},
{
"indices": [
109,
116
],
"text": "random"
}
],
"urls": [
{
"url": "https://t.co/GJj7oVHSab",
"indices": [
85,
108
],
"expanded_url": "http://goo.gl/fb/9X7orq",
"display_url": "goo.gl/fb/9X7orq"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694924923513540609",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 197315562,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1134920948/hiphop-conspiracy_normal.jpg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/mkxNacCF0q",
"indices": [
0,
22
],
"expanded_url": "http://hiphopconspiracy.com/",
"display_url": "hiphopconspiracy.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 82,
"profile_sidebar_border_color": "EEEEEE",
"id_str": "197315562",
"profile_background_color": "131516",
"listed_count": 26,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 5055,
"description": "In search of the truth!!",
"friends_count": 159,
"location": "Da Big Apple....",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/1134920948/hiphop-conspiracy_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif",
"screen_name": "hhconspiracy",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 0,
"name": "HH Conspiracy",
"notifications": false,
"url": "http://t.co/mkxNacCF0q",
"created_at": "Fri Oct 01 05:03:01 +0000 2010",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 16:46:27 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "@AstroDomina #kanye likes \u270c\ufe0ffingers in his pnut butter butthole",
"is_quote_status": false,
"in_reply_to_status_id": 694924538258173952,
"id": 694924858153684993,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 313819162,
"indices": [
0,
12
],
"id_str": "313819162",
"screen_name": "AstroDomina",
"name": "AstroDomina"
}
],
"hashtags": [
{
"indices": [
13,
19
],
"text": "kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": "AstroDomina",
"in_reply_to_user_id": 313819162,
"retweet_count": 0,
"id_str": "694924858153684993",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3310189132,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/621896239408410624/Rt6lhCJ9_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/Axg1dJH14C",
"indices": [
0,
22
],
"expanded_url": "http://www.shelfshmade.com",
"display_url": "shelfshmade.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 26,
"profile_sidebar_border_color": "C0DEED",
"id_str": "3310189132",
"profile_background_color": "C0DEED",
"listed_count": 0,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 597,
"description": "living life SSSHHHLLIIITTT",
"friends_count": 53,
"location": "BRooKnAm KROOKLYN",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/621896239408410624/Rt6lhCJ9_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3310189132/1437106596",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "shelfshmade",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 237,
"name": "Sean rometta",
"notifications": false,
"url": "http://t.co/Axg1dJH14C",
"created_at": "Sat Jun 06 03:30:42 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": "313819162",
"lang": "en",
"created_at": "Wed Feb 03 16:46:11 +0000 2016",
"in_reply_to_status_id_str": "694924538258173952",
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "I killed this #Remix!! #JayZ #Jcole #Kanye #KendrickLamar #Freestlye #HipHop https://t.co/vWYIG48OrJ",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694924852868689920,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
14,
20
],
"text": "Remix"
},
{
"indices": [
23,
28
],
"text": "JayZ"
},
{
"indices": [
29,
35
],
"text": "Jcole"
},
{
"indices": [
36,
42
],
"text": "Kanye"
},
{
"indices": [
43,
57
],
"text": "KendrickLamar"
},
{
"indices": [
58,
68
],
"text": "Freestlye"
},
{
"indices": [
69,
76
],
"text": "HipHop"
}
],
"urls": [
{
"url": "https://t.co/vWYIG48OrJ",
"indices": [
77,
100
],
"expanded_url": "https://soundcloud.com/crucial3sixty/tonight?utm_source=soundcloud&utm_campaign=share&utm_medium=twitter",
"display_url": "soundcloud.com/crucial3sixty/\u2026"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694924852868689920",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 286508334,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/534879237/logo.jpg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/568568265387962368/Y9iSjQ0y_normal.jpeg",
"profile_sidebar_fill_color": "EFEFEF",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/3usZD6nN2l",
"indices": [
0,
22
],
"expanded_url": "http://m.soundcloud.com/crucial3sixty/t-o-a-k",
"display_url": "m.soundcloud.com/crucial3sixty/\u2026"
}
]
},
"description": {
"urls": [
{
"url": "http://t.co/2dvlHh6Q0z",
"indices": [
82,
104
],
"expanded_url": "http://m.soundcloud.com/crucial3si",
"display_url": "m.soundcloud.com/crucial3si"
}
]
}
},
"followers_count": 592,
"profile_sidebar_border_color": "EEEEEE",
"id_str": "286508334",
"profile_background_color": "131516",
"listed_count": 6,
"is_translation_enabled": false,
"utc_offset": -25200,
"statuses_count": 2107,
"description": "Revolution, Evolution, 360 Degrees!!!!!! New music coming this summer, get ready. http://t.co/2dvlHh6Q0z...",
"friends_count": 1304,
"location": "N.O.\u2708H-Town",
"profile_link_color": "009999",
"profile_image_url": "http://pbs.twimg.com/profile_images/568568265387962368/Y9iSjQ0y_normal.jpeg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/286508334/1420054064",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/534879237/logo.jpg",
"screen_name": "Crucial3sixty",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 192,
"name": "Crucial3Sixty",
"notifications": false,
"url": "http://t.co/3usZD6nN2l",
"created_at": "Sat Apr 23 04:15:51 +0000 2011",
"contributors_enabled": false,
"time_zone": "Arizona",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 16:46:10 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "My dude #Kanye speaking the #truth... https://t.co/rrCaocY6Vy",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694923876418068481,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
8,
14
],
"text": "Kanye"
},
{
"indices": [
28,
34
],
"text": "truth"
}
],
"urls": [
{
"url": "https://t.co/rrCaocY6Vy",
"indices": [
38,
61
],
"expanded_url": "https://soundcloud.com/kanyewest/real-friends-no-more-parties-in-la-snipped?utm_source=soundcloud&utm_campaign=share&utm_medium=twitter",
"display_url": "soundcloud.com/kanyewest/real\u2026"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694923876418068481",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": false,
"default_profile_image": false,
"id": 2965226547,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/671954098179219456/sAKvrNmm_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/5jg7pPu8r5",
"indices": [
0,
23
],
"expanded_url": "http://www.therealemwatson.com/",
"display_url": "therealemwatson.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 580,
"profile_sidebar_border_color": "000000",
"id_str": "2965226547",
"profile_background_color": "000000",
"listed_count": 1,
"is_translation_enabled": false,
"utc_offset": null,
"statuses_count": 203,
"description": "Artist",
"friends_count": 64,
"location": "Atlanta",
"profile_link_color": "ABB8C2",
"profile_image_url": "http://pbs.twimg.com/profile_images/671954098179219456/sAKvrNmm_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2965226547/1448384551",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "tweetEMWatson",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 189,
"name": "E.M. Watson",
"notifications": false,
"url": "https://t.co/5jg7pPu8r5",
"created_at": "Wed Jan 07 01:00:40 +0000 2015",
"contributors_enabled": false,
"time_zone": null,
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 16:42:17 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "RT @livefrome: #Kanye says he's squashed his beef with #WizKhalifa - are you surprised? We're reading your tweets on #LiveFromE https://t.\u2026",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694922829951852544,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 621284187,
"indices": [
3,
13
],
"id_str": "621284187",
"screen_name": "livefrome",
"name": "Live From E!"
}
],
"hashtags": [
{
"indices": [
15,
21
],
"text": "Kanye"
},
{
"indices": [
55,
66
],
"text": "WizKhalifa"
},
{
"indices": [
118,
128
],
"text": "LiveFromE"
}
],
"urls": [],
"media": [
{
"source_user_id": 621284187,
"source_status_id_str": "694908537869217796",
"expanded_url": "http://twitter.com/livefrome/status/694908537869217796/photo/1",
"display_url": "pic.twitter.com/Q0TEWfzpPl",
"url": "https://t.co/Q0TEWfzpPl",
"media_url_https": "https://pbs.twimg.com/media/CaTPofRUMAAFLPP.jpg",
"source_user_id_str": "621284187",
"source_status_id": 694908537869217796,
"id_str": "694908537017741312",
"sizes": {
"small": {
"h": 300,
"resize": "fit",
"w": 300
},
"large": {
"h": 300,
"resize": "fit",
"w": 300
},
"medium": {
"h": 300,
"resize": "fit",
"w": 300
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
139,
140
],
"type": "photo",
"id": 694908537017741312,
"media_url": "http://pbs.twimg.com/media/CaTPofRUMAAFLPP.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 16,
"id_str": "694922829951852544",
"favorited": false,
"retweeted_status": {
"contributors": null,
"truncated": false,
"text": "#Kanye says he's squashed his beef with #WizKhalifa - are you surprised? We're reading your tweets on #LiveFromE https://t.co/Q0TEWfzpPl",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694908537869217796,
"favorite_count": 51,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "Kanye"
},
{
"indices": [
40,
51
],
"text": "WizKhalifa"
},
{
"indices": [
103,
113
],
"text": "LiveFromE"
}
],
"urls": [],
"media": [
{
"expanded_url": "http://twitter.com/livefrome/status/694908537869217796/photo/1",
"display_url": "pic.twitter.com/Q0TEWfzpPl",
"url": "https://t.co/Q0TEWfzpPl",
"media_url_https": "https://pbs.twimg.com/media/CaTPofRUMAAFLPP.jpg",
"id_str": "694908537017741312",
"sizes": {
"small": {
"h": 300,
"resize": "fit",
"w": 300
},
"large": {
"h": 300,
"resize": "fit",
"w": 300
},
"medium": {
"h": 300,
"resize": "fit",
"w": 300
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
114,
137
],
"type": "photo",
"id": 694908537017741312,
"media_url": "http://pbs.twimg.com/media/CaTPofRUMAAFLPP.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 16,
"id_str": "694908537869217796",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 621284187,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/600283416/e5s6gy3l0oe5qsed53mr.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/580116409360867328/8EPXo85Z_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/PaS7OuA1cs",
"indices": [
0,
22
],
"expanded_url": "http://eonline.com",
"display_url": "eonline.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 51015,
"profile_sidebar_border_color": "C0DEED",
"id_str": "621284187",
"profile_background_color": "C0DEED",
"listed_count": 156,
"is_translation_enabled": false,
"utc_offset": -25200,
"statuses_count": 5638,
"description": "Pop into our studio weekdays at 12:30p ET | 9:30a PT and join the conversation! #LiveFromE",
"friends_count": 59,
"location": "Los Angeles, CA",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/580116409360867328/8EPXo85Z_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/600283416/e5s6gy3l0oe5qsed53mr.jpeg",
"screen_name": "livefrome",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 113,
"name": "Live From E!",
"notifications": false,
"url": "http://t.co/PaS7OuA1cs",
"created_at": "Thu Jun 28 18:30:12 +0000 2012",
"contributors_enabled": false,
"time_zone": "Arizona",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 15:41:20 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 381410993,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/446770844413329408/Fb2BY-yc.jpeg",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/694987419758759936/9MaQR2B-_normal.jpg",
"profile_sidebar_fill_color": "E6F6F9",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/X45gRK2mjs",
"indices": [
0,
23
],
"expanded_url": "https://www.keek.com/vanessasakah",
"display_url": "keek.com/vanessasakah"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 509,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "381410993",
"profile_background_color": "DBE9ED",
"listed_count": 2,
"is_translation_enabled": false,
"utc_offset": 3600,
"statuses_count": 5129,
"description": "Since 1994. You Are Beautiful Because You Are One Of A Kind. #F.W.M.Krep. Private Account #Proverbs 3:5-6",
"friends_count": 85,
"location": "cameroon",
"profile_link_color": "CC3366",
"profile_image_url": "http://pbs.twimg.com/profile_images/694987419758759936/9MaQR2B-_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/381410993/1449846902",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/446770844413329408/Fb2BY-yc.jpeg",
"screen_name": "smuthcrymynal",
"lang": "en",
"profile_background_tile": true,
"favourites_count": 1633,
"name": "sakah vanessa",
"notifications": false,
"url": "https://t.co/X45gRK2mjs",
"created_at": "Wed Sep 28 08:49:06 +0000 2011",
"contributors_enabled": false,
"time_zone": "West Central Africa",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 16:38:08 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "@TMZ for now until @kanyewest gets his #Kanye panties in a bunch again",
"is_quote_status": false,
"in_reply_to_status_id": 694915175627927553,
"id": 694922785362202624,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [
{
"id": 16331010,
"indices": [
0,
4
],
"id_str": "16331010",
"screen_name": "TMZ",
"name": "TMZ"
},
{
"id": 169686021,
"indices": [
19,
29
],
"id_str": "169686021",
"screen_name": "kanyewest",
"name": "KANYE WEST"
}
],
"hashtags": [
{
"indices": [
39,
45
],
"text": "Kanye"
}
],
"urls": []
},
"in_reply_to_screen_name": "TMZ",
"in_reply_to_user_id": 16331010,
"retweet_count": 0,
"id_str": "694922785362202624",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 386163662,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/688786206344228864/P7IfmdLW_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"description": {
"urls": []
}
},
"followers_count": 133,
"profile_sidebar_border_color": "C0DEED",
"id_str": "386163662",
"profile_background_color": "C0DEED",
"listed_count": 5,
"is_translation_enabled": false,
"utc_offset": -18000,
"statuses_count": 8720,
"description": "Will fight for what's fair, my family, my rights and those that don't have a voice",
"friends_count": 262,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/688786206344228864/P7IfmdLW_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/386163662/1453054403",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "SammyD71",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 101,
"name": "Samantha deFrancesco",
"notifications": false,
"url": null,
"created_at": "Thu Oct 06 19:33:46 +0000 2011",
"contributors_enabled": false,
"time_zone": "Eastern Time (US & Canada)",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": "16331010",
"lang": "en",
"created_at": "Wed Feb 03 16:37:57 +0000 2016",
"in_reply_to_status_id_str": "694915175627927553",
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#Kanye apologised to #WizKhalifa - but not Amber Rose... https://t.co/P2jPddhpZW https://t.co/1CISEm4Kh7",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694921296656728065,
"favorite_count": 3,
"source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
6
],
"text": "Kanye"
},
{
"indices": [
21,
32
],
"text": "WizKhalifa"
}
],
"urls": [
{
"url": "https://t.co/P2jPddhpZW",
"indices": [
57,
80
],
"expanded_url": "http://www.thedebrief.co.uk/news/celebrity/kanye-west-wiz-khalifa-twitter-fight-apology-amber-rose-kim-kardashian-20160261967",
"display_url": "thedebrief.co.uk/news/celebrity\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/TheDebrief/status/694921296656728065/photo/1",
"display_url": "pic.twitter.com/1CISEm4Kh7",
"url": "https://t.co/1CISEm4Kh7",
"media_url_https": "https://pbs.twimg.com/media/CaTCdnrXEAAqm0X.jpg",
"id_str": "694894056644743168",
"sizes": {
"large": {
"h": 349,
"resize": "fit",
"w": 620
},
"small": {
"h": 191,
"resize": "fit",
"w": 340
},
"medium": {
"h": 337,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
81,
104
],
"type": "photo",
"id": 694894056644743168,
"media_url": "http://pbs.twimg.com/media/CaTCdnrXEAAqm0X.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694921296656728065",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 1140280051,
"profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/672089819900731392/9-4anuHz.jpg",
"verified": true,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/693028376106438656/bYg5MONx_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/ASgNZuctMl",
"indices": [
0,
22
],
"expanded_url": "http://www.thedebrief.co.uk/",
"display_url": "thedebrief.co.uk"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 47283,
"profile_sidebar_border_color": "FFFFFF",
"id_str": "1140280051",
"profile_background_color": "FFFFFF",
"listed_count": 221,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 34686,
"description": "Your go-to place on the Internet. Get #TheDebrief",
"friends_count": 1994,
"location": "London",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/693028376106438656/bYg5MONx_normal.jpg",
"following": false,
"geo_enabled": true,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1140280051/1454065824",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/672089819900731392/9-4anuHz.jpg",
"screen_name": "TheDebrief",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 3342,
"name": "The Debrief",
"notifications": false,
"url": "http://t.co/ASgNZuctMl",
"created_at": "Fri Feb 01 17:28:33 +0000 2013",
"contributors_enabled": false,
"time_zone": "Casablanca",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 16:32:02 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "(Mirror):#Kanye #West reckons he's good as Jimi Hendrix and Michael Jackson, calling.. https://t.co/BzbTwMJx2n https://t.co/FlrJxH9ZHt",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694920986647511040,
"favorite_count": 0,
"source": "<a href=\"http://www.newsoneplace.com\" rel=\"nofollow\">Newsoneplace To Twitter</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
9,
15
],
"text": "Kanye"
},
{
"indices": [
16,
21
],
"text": "West"
}
],
"urls": [
{
"url": "https://t.co/BzbTwMJx2n",
"indices": [
87,
110
],
"expanded_url": "http://www.newsoneplace.com/article/18005831509/kanye-west-jimi-hendrix-michael-jackson-waves-reckons-calling-greatest",
"display_url": "newsoneplace.com/article/180058\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/newsoneplace/status/694920986647511040/photo/1",
"display_url": "pic.twitter.com/FlrJxH9ZHt",
"url": "https://t.co/FlrJxH9ZHt",
"media_url_https": "https://pbs.twimg.com/media/CaTa9JhXEAUkd_y.jpg",
"id_str": "694920986584616965",
"sizes": {
"large": {
"h": 409,
"resize": "fit",
"w": 615
},
"small": {
"h": 226,
"resize": "fit",
"w": 340
},
"medium": {
"h": 399,
"resize": "fit",
"w": 600
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
111,
134
],
"type": "photo",
"id": 694920986584616965,
"media_url": "http://pbs.twimg.com/media/CaTa9JhXEAUkd_y.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694920986647511040",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3534222021,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/640547302025728000/l6eGtURW_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "http://t.co/e3OmYxJ1dq",
"indices": [
0,
22
],
"expanded_url": "http://www.newsoneplace.com",
"display_url": "newsoneplace.com"
}
]
},
"description": {
"urls": [
{
"url": "http://t.co/TKTMLsjLHz",
"indices": [
0,
22
],
"expanded_url": "http://Newsoneplace.com",
"display_url": "Newsoneplace.com"
}
]
}
},
"followers_count": 117,
"profile_sidebar_border_color": "C0DEED",
"id_str": "3534222021",
"profile_background_color": "C0DEED",
"listed_count": 125,
"is_translation_enabled": false,
"utc_offset": 0,
"statuses_count": 85804,
"description": "http://t.co/TKTMLsjLHz is a news aggregator, it gathers news from different sources around the UK and the world, 24/7 automatically. All news in one place !",
"friends_count": 27,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/640547302025728000/l6eGtURW_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "newsoneplace",
"lang": "en-gb",
"profile_background_tile": false,
"favourites_count": 2,
"name": "NewsOnePlace",
"notifications": false,
"url": "http://t.co/e3OmYxJ1dq",
"created_at": "Thu Sep 03 13:15:22 +0000 2015",
"contributors_enabled": false,
"time_zone": "Casablanca",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 16:30:48 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "#WizKalifa puts #Kanye feud to bed \n\nhttps://t.co/yeoNo83kae https://t.co/q9NZD7FgZM",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694920078022832128,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
0,
10
],
"text": "WizKalifa"
},
{
"indices": [
16,
22
],
"text": "Kanye"
}
],
"urls": [
{
"url": "https://t.co/yeoNo83kae",
"indices": [
37,
60
],
"expanded_url": "http://www.thefamshop.com/blogs/news/88984323-wiz-khalifa-puts-kanye-west-beef-to-rest",
"display_url": "thefamshop.com/blogs/news/889\u2026"
}
],
"media": [
{
"expanded_url": "http://twitter.com/thefamshop/status/694920078022832128/photo/1",
"display_url": "pic.twitter.com/q9NZD7FgZM",
"url": "https://t.co/q9NZD7FgZM",
"media_url_https": "https://pbs.twimg.com/media/CaTaIOqWYAEOT7o.jpg",
"id_str": "694920077431431169",
"sizes": {
"large": {
"h": 556,
"resize": "fit",
"w": 380
},
"small": {
"h": 497,
"resize": "fit",
"w": 340
},
"medium": {
"h": 556,
"resize": "fit",
"w": 380
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"indices": [
61,
84
],
"type": "photo",
"id": 694920077431431169,
"media_url": "http://pbs.twimg.com/media/CaTaIOqWYAEOT7o.jpg"
}
]
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694920078022832128",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": false,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 4819168234,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "000000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/688455669628964865/6w4ybFgY_normal.jpg",
"profile_sidebar_fill_color": "000000",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/dDIOIEkWlq",
"indices": [
0,
23
],
"expanded_url": "http://www.TheFamShop.com",
"display_url": "TheFamShop.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 32,
"profile_sidebar_border_color": "000000",
"id_str": "4819168234",
"profile_background_color": "DD2E44",
"listed_count": 1,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 32,
"description": "",
"friends_count": 134,
"location": "",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/688455669628964865/6w4ybFgY_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/4819168234/1452975962",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "thefamshop",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 14,
"name": "The Fam Shop",
"notifications": false,
"url": "https://t.co/dDIOIEkWlq",
"created_at": "Sat Jan 16 20:18:50 +0000 2016",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": false,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"possibly_sensitive": false,
"lang": "en",
"created_at": "Wed Feb 03 16:27:12 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
},
{
"contributors": null,
"truncated": false,
"text": "Regarding #Kanye's album title\u2014#Waves. It's poetic; versatile; and metaphorically diverse.\n\nSwish?\nSo Help Me God?\nYou all have zero taste.",
"is_quote_status": false,
"in_reply_to_status_id": null,
"id": 694920004152635392,
"favorite_count": 0,
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"retweeted": false,
"coordinates": null,
"entities": {
"symbols": [],
"user_mentions": [],
"hashtags": [
{
"indices": [
10,
16
],
"text": "Kanye"
},
{
"indices": [
31,
37
],
"text": "Waves"
}
],
"urls": []
},
"in_reply_to_screen_name": null,
"in_reply_to_user_id": null,
"retweet_count": 0,
"id_str": "694920004152635392",
"favorited": false,
"user": {
"follow_request_sent": false,
"has_extended_profile": true,
"profile_use_background_image": true,
"default_profile_image": false,
"id": 3265558686,
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"verified": false,
"profile_text_color": "333333",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/678312916190277632/2dklrrty_normal.jpg",
"profile_sidebar_fill_color": "DDEEF6",
"entities": {
"url": {
"urls": [
{
"url": "https://t.co/93j6848gnE",
"indices": [
0,
23
],
"expanded_url": "http://bhlingard.tumblr.com",
"display_url": "bhlingard.tumblr.com"
}
]
},
"description": {
"urls": []
}
},
"followers_count": 96,
"profile_sidebar_border_color": "C0DEED",
"id_str": "3265558686",
"profile_background_color": "C0DEED",
"listed_count": 5,
"is_translation_enabled": false,
"utc_offset": -28800,
"statuses_count": 1930,
"description": "Colors are pretty. I'm salty. Together\u2014art is born.",
"friends_count": 132,
"location": "Castro Valley, CA",
"profile_link_color": "0084B4",
"profile_image_url": "http://pbs.twimg.com/profile_images/678312916190277632/2dklrrty_normal.jpg",
"following": false,
"geo_enabled": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3265558686/1450557376",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
"screen_name": "ablackiphone",
"lang": "en",
"profile_background_tile": false,
"favourites_count": 2490,
"name": "Brian Hugh Lingard",
"notifications": false,
"url": "https://t.co/93j6848gnE",
"created_at": "Thu Jul 02 02:25:38 +0000 2015",
"contributors_enabled": false,
"time_zone": "Pacific Time (US & Canada)",
"protected": false,
"default_profile": true,
"is_translator": false
},
"geo": null,
"in_reply_to_user_id_str": null,
"lang": "en",
"created_at": "Wed Feb 03 16:26:54 +0000 2016",
"in_reply_to_status_id_str": null,
"place": null,
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
}
}
]
In [8]:
import time
status_texts = [ status['text']
for status in statuses ]
screen_names = [ user_mention['screen_name']
for status in statuses
for user_mention in status['entities']['user_mentions'] ]
hashtags = [ hashtag['text']
for status in statuses
for hashtag in status['entities']['hashtags'] ]
# Compute a collection of all words from all tweets
words = [ w
for t in status_texts
for w in t.split() ]
# Explore the first 5 items for each...
print json.dumps(status_texts[0:5], indent=1)
print json.dumps(screen_names[0:5], indent=1)
print json.dumps(hashtags[0:5], indent=1)
print json.dumps(words[0:5], indent=1)
[
"Wiz Khalifa Reveals How Kanye West Apologized for Claiming He &quot;Owned&quot; His Son - Celebuzz #kanye https://t.co/HRKWm8FqKR",
"(Buzzfeed):11 #Reasons Why #Kanye West Shouldn't Be So Sad About His Height : Hey Kanye,.. https://t.co/Oskuh05eAW https://t.co/gp0Xf1iM1O",
"Everyone vote on my poll because it's my first time doing one. #Kanye #Wiz #Poll #Pinned",
"Just left the #Kanye Yeezy #NYFW show casting! Took 2 1/2 hrs to get thru the line but I made it! Peep #BTS of it on my #Snapchat at LirisC",
"\ud83d\ude4f\ud83c\udffe 2016 \ud83d\ude4f\ud83c\udffe #Kanye #Drake #FrankOcean https://t.co/Q8VFoYjPMh"
]
[
"TheRapperGuide",
"UKGrime",
"PointPointParis",
"BuzzFeedUK",
"livefrome"
]
[
"kanye",
"Reasons",
"Kanye",
"Kanye",
"Wiz"
]
[
"Wiz",
"Khalifa",
"Reveals",
"How",
"Kanye"
]
In [9]:
from collections import Counter
for item in [words, screen_names, hashtags]:
c = Counter(item)
print c.most_common()[:10] # top 10
print
[(u'#Kanye', 108), (u'RT', 64), (u'#kanye', 63), (u'the', 34), (u'of', 31), (u'a', 27), (u'on', 27), (u'my', 22), (u'you', 21), (u'Kanye', 20)]
[(u'kanyewest', 11), (u'ThePerezHilton', 6), (u'livefrome', 5), (u'Nickelback', 5), (u'SHINZO_PARIS', 5), (u'OneRepublic', 4), (u'lakafilms', 4), (u'bnharris2011', 4), (u'ckgthedon', 4), (u'UKGrime', 4)]
[(u'Kanye', 126), (u'kanye', 70), (u'kanyewest', 16), (u'WizKhalifa', 14), (u'jcole', 13), (u'AmberRose', 12), (u'KanyeWest', 12), (u'drake', 8), (u'yeezy', 8), (u'coleworld', 8)]
In [10]:
from prettytable import PrettyTable
for label, data in (('Word', words),
('Screen Name', screen_names),
('Hashtag', hashtags)):
pt = PrettyTable(field_names=[label, 'Count'])
c = Counter(data)
[ pt.add_row(kv) for kv in c.most_common()[:10] ]
pt.align[label], pt.align['Count'] = 'l', 'r' # Set column alignment
print pt
+--------+-------+
| Word | Count |
+--------+-------+
| #Kanye | 108 |
| RT | 64 |
| #kanye | 63 |
| the | 34 |
| of | 31 |
| a | 27 |
| on | 27 |
| my | 22 |
| you | 21 |
| Kanye | 20 |
+--------+-------+
+----------------+-------+
| Screen Name | Count |
+----------------+-------+
| kanyewest | 11 |
| ThePerezHilton | 6 |
| livefrome | 5 |
| Nickelback | 5 |
| SHINZO_PARIS | 5 |
| OneRepublic | 4 |
| lakafilms | 4 |
| bnharris2011 | 4 |
| ckgthedon | 4 |
| UKGrime | 4 |
+----------------+-------+
+------------+-------+
| Hashtag | Count |
+------------+-------+
| Kanye | 126 |
| kanye | 70 |
| kanyewest | 16 |
| WizKhalifa | 14 |
| jcole | 13 |
| AmberRose | 12 |
| KanyeWest | 12 |
| drake | 8 |
| yeezy | 8 |
| coleworld | 8 |
+------------+-------+
In [11]:
# A function for computing lexical diversity
def lexical_diversity(tokens):
return 1.0*len(set(tokens))/len(tokens)
# A function for computing the average number of words per tweet
def average_words(statuses):
total_words = sum([ len(s.split()) for s in statuses ])
return 1.0*total_words/len(statuses)
print lexical_diversity(words)
print lexical_diversity(screen_names)
print lexical_diversity(hashtags)
print average_words(status_texts)
0.452212718483
0.512
0.371610845295
13.445
In [12]:
retweets = [
# Store out a tuple of these three values ...
(status['retweet_count'],
status['retweeted_status']['user']['screen_name'],
status['text'])
# ... for each status ...
for status in statuses
# ... so long as the status meets this condition.
if status.has_key('retweeted_status')
]
# Slice off the first 5 from the sorted results and display each item in the tuple
pt = PrettyTable(field_names=['Count', 'Screen Name', 'Text'])
[ pt.add_row(row) for row in sorted(retweets, reverse=True)[:5] ]
pt.max_width['Text'] = 50
pt.align= 'l'
print pt
+-------+----------------+----------------------------------------------------+
| Count | Screen Name | Text |
+-------+----------------+----------------------------------------------------+
| 3258 | nihilist_arbys | RT @nihilist_arbys: Yo #kanye! Arbys has beef too! |
| | | The beef of millions of cow carcasses that will, |
| | | like you, be forgotten in a godless unf… |
| 3258 | nihilist_arbys | RT @nihilist_arbys: Yo #kanye! Arbys has beef too! |
| | | The beef of millions of cow carcasses that will, |
| | | like you, be forgotten in a godless unf… |
| 3258 | nihilist_arbys | RT @nihilist_arbys: Yo #kanye! Arbys has beef too! |
| | | The beef of millions of cow carcasses that will, |
| | | like you, be forgotten in a godless unf… |
| 3258 | nihilist_arbys | RT @nihilist_arbys: Yo #kanye! Arbys has beef too! |
| | | The beef of millions of cow carcasses that will, |
| | | like you, be forgotten in a godless unf… |
| 3105 | Nickelback | RT @Nickelback: Good news: we're working on new |
| | | music. Bad news for us: @kanyewest 'Swish' will be |
| | | the best album of all time. #SWISH #Kanye |
+-------+----------------+----------------------------------------------------+
In [13]:
import matplotlib
import matplotlib.pyplot as plt
%matplotlib inline
word_counts = sorted(Counter(words).values(), reverse=True)
plt.loglog(word_counts)
plt.ylabel("Freq")
plt.xlabel("Word Rank")
Out[13]:
<matplotlib.text.Text at 0xae99390>
In [14]:
# Using underscores while unpacking values in
# a tuple is idiomatic for discarding them
counts = [count for count, _, _ in retweets]
plt.hist(counts)
plt.title("Retweets")
plt.xlabel('Bins (number of times retweeted)')
plt.ylabel('Number of tweets in bin')
print counts
[1, 321, 16, 6, 2, 2, 3, 1, 6, 3, 3, 1, 2, 6, 6, 3105, 3105, 8, 3105, 3105, 1251, 2, 8, 874, 8, 2, 8, 8, 3105, 8, 1, 93, 1, 1, 1, 2, 1, 516, 2, 1, 227, 2, 3258, 1631, 2, 2, 13, 2, 58, 2, 58, 3258, 2, 1, 3258, 1, 3258, 16, 321, 16, 874, 2, 2, 16]
In [ ]:
In [ ]:
Content source: tmm/DS501
Similar notebooks: