show

fun Statuses.show(    id: Long,     trimUser: Boolean? = null,     includeMyRetweet: Boolean? = null,     includeEntities: Boolean? = null,     includeExtAltText: Boolean? = null,     includeCardUri: Boolean? = null,     tweetMode: TweetMode = TweetMode.Default,     vararg options: Option): JsonObjectApiAction<Status>

Returns a single Tweet, specified by the id parameter. The Tweet's author will also be embedded within the Tweet. See GET statuses/lookup for getting Tweets in bulk (up to 100 per call). See also Embedded Timelines, Embedded Tweets, and GET statuses/oembed for tools to render Tweets according to Display Requirements.

Twitter API reference

Receiver

Statuses endpoint instance.

Return

JsonObjectApiAction for Status model.

Parameters

id

The numerical ID of the desired Tweet.

trimUser

When set to either true , t or 1 , each Tweet returned in a timeline will include a user object including only the status authors numerical ID. Omit this parameter to receive the complete user object.

includeMyRetweet

When set to either true, t or 1, any Tweets returned that have been retweeted by the authenticating user will include an additional current_user_retweet node, containing the ID of the source status for the retweet.

includeEntities

The entities node will not be included when set to false.

includeExtAltText

If alt text has been added to any attached media entities, this parameter will return an ext_alt_text value in the top-level key for the media entity. If no value has been set, this will be returned as null.

includeCardUri

When set to either true, t or 1, the retrieved Tweet will include a card_uri attribute when there is an ads card attached to the Tweet and when that card was attached using the card_uri value.

options

Optional. Custom parameters of this request.