lookupById abstract method

Future<TwitterResponse<ListData, void>> lookupById({
  1. required String listId,
  2. List<ListExpansion>? expansions,
  3. List<UserField>? userFields,
  4. List<ListField>? listFields,
})

Returns the details of a specified List.

Parameters

  • listId: The ID of the List to lookup.

  • expansions: Expansions enable you to request additional data objects that relate to the originally returned List. The ID that represents the expanded data object will be included directly in the List data object, but the expanded object metadata will be returned within the includes response object, and will also include the ID so that you can match this data object to the original user object.

  • userFields: This fields parameter enables you to select which specific user fields will deliver with the users object. The user fields will only be returned if you have included expansions=owner_id query parameter in your request. You will find this ID and all additional user fields in the included data object.

  • listFields: This fields parameter enables you to select which specific List fields will deliver with each returned List objects. Specify the desired fields in a comma-separated list without spaces between commas and fields. These specified List fields will display directly in the List data objects.

Endpoint Url

Authentication Methods

  • OAuth 2.0 Authorization Code with PKCE
  • OAuth 2.0 App-only
  • OAuth 1.0a

Required Scopes

  • tweet.read
  • users.read
  • list.read

Rate Limits

  • App rate limit (OAuth 2.0 App Access Token): 75 requests per 15-minute window shared among all users of your app

  • User rate limit (OAuth 2.0 user Access Token): 75 requests per 15-minute window per each authenticated user

Reference

Implementation

Future<TwitterResponse<ListData, void>> lookupById({
  required String listId,
  List<ListExpansion>? expansions,
  List<UserField>? userFields,
  List<ListField>? listFields,
});