What is the time zone used for tweets in Twitter API?
Solution
The timezone of each tweet is automatically converted to the local timezone. If you need UTC, you can use the .ToUniversalTime() method, for example: myTweet.CreatedDate.ToUniversalTime();