entries

fun CollectionEntries.entries(    id: String,     count: Int? = null,     maxPosition: Int? = null,     minPosition: Int? = null,     vararg options: Option): JsonObjectApiAction<Collection.Entry.Result>

Retrieve the identified Collection, presented as a list of the Tweets curated within. The response structure of this method differs significantly from timelines you may be used to working with elsewhere in the Twitter API. To navigate a Collection, use the position object of a response, which includes attributes for max_position, min_position, and was_truncated. was_truncated indicates whether additional Tweets exist in the collection outside of the range of the current request. To retrieve Tweets further back in time, use the value of min_position found in the current response as the max_position parameter in the next call to this endpoint.

Twitter API reference

Receiver

CollectionEntries endpoint instance.

Return

JsonObjectApiAction for Collection.Entry.Result model.

Parameters

id

The identifier of the Collection for which to return results.

count

Specifies the maximum number of results to include in the response. Specify a count between 1 and 200. A next_cursor value will be provided in the response if additional results are available.

maxPosition

Returns results with a position value less than or equal to the specified position.

minPosition

Returns results with a position greater than the specified position.

options

Optional. Custom parameters of this request.