[![Labs](https://img.shields.io/endpoint?url=https%3A%2F%2Ftwbadges.glitch.me%2Fbadges%2Flabs)](https://developer.twitter.com/en/docs/labs) Get a Tweet with (poll data expansion) from the [Twitter Developer Labs](https://t.co/labs) Tweets endpoint (supports multiple IDs) `twurl -j "/labs/2/tweets?ids=1155833627743272960&expansions=author_id,attachments.poll_ids"` ```javascript { "data": [ { "attachments": { "poll_ids": [ "1155833626535387136" ] }, "author_id": "786491", "id": "1155833627743272960", "text": "If you're a developer using the Twitter API, what is you favourite tool to use to test endpoints? 🛠💻" } ], "includes": { "polls": [ { "id": "1155833626535387136", "options": [ { "position": 1, "label": "twurl", "votes": 11 }, { "position": 2, "label": "Postman", "votes": 24 }, { "position": 3, "label": "Insomnia", "votes": 9 }, { "position": 4, "label": "I roll my own!", "votes": 10 } ] } ], "users": [ { "id": "786491", "name": "andypiper", "username": "andypiper" } ] } } ``` Get Tweet metrics for a Tweet that is owned by your auth'ed user (supports multiple IDs) Note that organic and non-public metrics are not available outside of a 30-day window from Tweet creation. `twurl -j "/labs/2/tweets/1266695547534168064?tweet.fields=non_public_metrics,organic_metrics,public_metrics"` ```javascript { "data": { "id": "1266695547534168064", "non_public_metrics": { "impression_count": 1816 }, "organic_metrics": { "impression_count": 1816, "like_count": 11, "reply_count": 3, "retweet_count": 0 }, "public_metrics": { "retweet_count": 0, "reply_count": 3, "like_count": 11, "quote_count": 0 }, "text": "Ready to go @SummertonClub #SVWF 🥃 https://t.co/ztIqxZttCq" } } ```