I don’t have access to my client’s Twitter interface, but the last time we were able to pull data was on 2018-06-24 and the number of mentions that day were 209, but on 2018-06-23 this client had 935 mentions for this credential.
And sure, just a heads up we the Twython API for authentication. Here’s the request we’re making:
self._request(url, method=method, params=params,
api_call=url)
Where self is the Twython object
url = ‘’‘https://api.twitter.com/1.1/statuses/mentions_timeline.json’’’
params = {‘count’: 200, ‘contributor_details’: 0, ‘screen_name’: ‘xxxxxxx’, ‘since_id’: u’999999916268310530’, ‘include_entities’: 0, ‘trim_user’: 1, ‘max_id’: None, ‘include_rts’: 1}
Let me know what else you need from me.