[](https://developer.twitter.com/en/docs/twitter-api)
`twurl "/1.1/statuses/user_timeline.json?count=5" | jq '[.[] | { text: .text, source: .source, time: .created_at}]'`
```javascript
[
{
"text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque interdum rutrum sodales. Nullam mattis fermen… https://t.co/kb5SVo14NR",
"source": "simpletester123",
"time": "Wed Jul 26 10:12:53 +0000 2017"
},
{
"text": "test https://t.co/76eZnhqKj4",
"source": "simpletester123",
"time": "Wed Jul 26 10:11:44 +0000 2017"
},
{
"text": "Well done @LastWeekTonight 👏🏻 https://t.co/DyHKpUKGy1",
"source": "Twitter for iPhone",
"time": "Mon Jul 24 19:19:16 +0000 2017"
},
{
"text": "Test https://t.co/wBZ9lp9kCR",
"source": "PhotoboothDemoiOS",
"time": "Fri Jun 30 12:25:50 +0000 2017"
},
{
"text": "just a test\nlook at this\n😎 https://t.co/gYEcopskOR",
"source": "PhotoboothDemoiOS",
"time": "Thu Jun 29 17:26:21 +0000 2017"
}
]
```