> ## Documentation Index
> Fetch the complete documentation index at: https://docs.twexapi.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get List Members by Page

> Retrieve a paginated list of list members using cursor-based pagination. Each page returns up to 20 members. Pass next_cursor from the previous response to continue. Pricing: $0.14 per 1,000 members.



## OpenAPI

````yaml /api-reference/openapi.json post /twitter/list/members/page
openapi: 3.1.0
info:
  title: Twitter API Service
  description: |2-

            A comprehensive Twitter API service that provides various Twitter operations including:
            
            * **Search Operations**: Advanced search, hashtags, cashtags
            * **Tweet Operations**: Post, like, retweet, quote, bookmark, delete
            * **User Operations**: Batch user information retrieval
            * **Influencer Operations**: Get tweets from top influencers
            
            All endpoints return standardized responses in the format:
            ```json
            {
                "code": 200,
                "msg": "success", 
                "data": {...}
            }
            ```
            
            ## Authentication
            
            This API uses Bearer token authentication. Include your token in the Authorization header:
            ```
            Authorization: Bearer your_token_here
            ```
            
  contact:
    name: API Support
    email: support@twitterxapi.com
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.twexapi.io
    description: Development server
security: []
paths:
  /twitter/list/members/page:
    post:
      tags:
        - Lists Endpoints
      summary: Get List Members by Page
      description: >-
        Retrieve a paginated list of list members using cursor-based pagination.
        Each page returns up to 20 members. Pass next_cursor from the previous
        response to continue. Pricing: $0.14 per 1,000 members.
      operationId: get_list_members_page_endpoint_twitter_list_members_page_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetListMembersCursorQuery'
        required: true
      responses:
        '200':
          description: >-
            Current page data (up to 20 members) and pagination metadata
            (has_next_page, next_cursor).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetListMembersCursorResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    GetListMembersCursorQuery:
      properties:
        next_cursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Cursor
          description: >-
            Cursor returned by the previous page. Leave empty to fetch the first
            page.
          examples:
            - '1234567890'
        list_id:
          type: string
          title: List Id
          description: The ID of the list to get members from.
      type: object
      required:
        - list_id
      title: GetListMembersCursorQuery
    GetListMembersCursorResponse:
      properties:
        code:
          type: integer
          title: Code
          description: The status code of the response.
        msg:
          type: string
          title: Msg
          description: The message of the response.
        data:
          items:
            $ref: '#/components/schemas/UserModel'
          type: array
          title: Data
          description: A list of user objects.
        has_next_page:
          type: boolean
          title: Has Next Page
          description: Whether another page is available.
        next_cursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Cursor
          description: The next cursor of the members to get.
          examples:
            - '1234567890'
      type: object
      required:
        - code
        - msg
        - data
        - has_next_page
      title: GetListMembersCursorResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    UserModel:
      properties:
        id:
          type: string
          title: Id
          description: User ID
          example: '1717001045992251392'
        name:
          type: string
          title: Name
          description: Display name
          example: Cryptoklepto
        screen_name:
          type: string
          title: Screen Name
          description: Twitter username
          example: CK_Cryptoklepto
        created_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Created At
          description: Account creation date
          example: Mon Oct 28 02:32:47 +0000 2024
        created_at_datetime:
          anyOf:
            - type: string
            - type: 'null'
          title: Created At Datetime
          description: Account creation datetime in ISO format
          example: '2024-10-28T02:32:47.000Z'
        can_dm:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Can Dm
          description: Whether the user can be direct messaged
          default: false
        can_media_tag:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Can Media Tag
          description: Whether the user can be tagged in media
          default: false
        default_profile:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Default Profile
          description: Whether the user has a default profile
          default: false
        default_profile_image:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Default Profile Image
          description: Whether the user has a default profile image
          default: false
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
          description: User's bio description
          default: ''
        description_urls:
          items:
            type: string
          type: array
          title: Description Urls
          description: List of URLs found in the user's description
          default: []
        urls:
          anyOf:
            - items:
                $ref: '#/components/schemas/urlModel'
              type: array
            - type: 'null'
          title: Urls
          description: List of URLs found in the user's profile
        fast_followers_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Fast Followers Count
          description: Count of fast followers
          default: 0
        favourites_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Favourites Count
          description: Number of tweets the user has liked
          default: 0
        followers_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Followers Count
          description: Number of followers
          default: 0
        following_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Following Count
          description: Number of users this user is following
          default: 0
        has_custom_timelines:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Has Custom Timelines
          description: Whether the user has custom timelines
          default: false
        is_blue_verified:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Blue Verified
          description: Blue verification status
          default: false
        verified_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Verified Type
          description: >-
            Verification badge type when not blue-only: blue, business,
            government, etc.
          examples:
            - government
            - business
            - blue
        is_verified:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Verified
          description: >-
            True if the account has any verification badge (blue, business,
            government, or legacy verified)
          default: false
        profile_image_shape:
          anyOf:
            - type: string
            - type: 'null'
          title: Profile Image Shape
          description: >-
            Profile image shape (Circle or Square; Square often indicates
            business/government)
          examples:
            - Circle
            - Square
        is_translator:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Translator
          description: Whether the user is a translator
          default: false
        listed_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Listed Count
          description: Number of public lists the user is a member of
          default: 0
        location:
          anyOf:
            - type: string
            - type: 'null'
          title: Location
          description: User's location
          default: ''
          example: New York, USA
        media_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Media Count
          description: Number of media tweets posted by the user
          default: 0
        normal_followers_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Normal Followers Count
          description: Count of normal followers
          default: 0
        pinned_tweet_ids:
          items:
            type: string
          type: array
          title: Pinned Tweet Ids
          description: List of pinned tweet IDs
          default: []
        possibly_sensitive:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Possibly Sensitive
          description: Whether the user's profile may contain sensitive content
          default: false
        profile_banner_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Profile Banner Url
          description: URL of the user's profile banner
        profile_image_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Profile Image Url
          description: URL of the user's profile image
        protected:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Protected
          description: Whether the user's tweets are protected
          default: false
        statuses_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Statuses Count
          description: Number of tweets posted by the user
          default: 0
      type: object
      required:
        - id
        - name
        - screen_name
      title: UserModel
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    urlModel:
      properties:
        url:
          type: string
          title: Url
          description: URL
          example: https://www.google.com
        expanded_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Expanded Url
          description: Expanded URL
          example: https://www.google.com
        display_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Url
          description: Display URL
          example: www.google.com
      type: object
      required:
        - url
      title: urlModel
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````