> ## 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 Followers by Page

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



## OpenAPI

````yaml /api-reference/openapi.json post /twitter/followers/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/followers/page:
    post:
      tags:
        - Followers & Following Endpoints
      summary: Get Followers by Page
      description: >-
        Retrieve a paginated list of followers using cursor-based pagination.
        Each page returns up to 200 followers. Pass next_cursor from the
        previous response to continue. Pricing: $0.14 per 1,000 followers.
      operationId: get_followers_cursor_apiendpoint_twitter_followers_page_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetFollowersCursorQuery'
        required: true
      responses:
        '200':
          description: >-
            Current page data (up to 200 followers) and pagination metadata
            (has_next_page, next_cursor).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetFollowersCursorResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    GetFollowersCursorQuery:
      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'
        screen_name:
          type: string
          title: Screen Name
          description: Twitter screen name of the target user (with or without @).
          examples:
            - elonmusk
      type: object
      required:
        - screen_name
      title: GetFollowersCursorQuery
    GetFollowersCursorResponse:
      properties:
        code:
          type: integer
          title: Code
          description: HTTP status code
          default: 200
        msg:
          type: string
          title: Msg
          description: Response message
          default: success
        data:
          items:
            anyOf:
              - $ref: '#/components/schemas/UserInfo'
              - type: 'null'
          type: array
          title: Data
          description: Current page follower items.
        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: Use this cursor to fetch the next page when has_next_page is true.
          examples:
            - '1234567890'
      type: object
      required:
        - data
        - has_next_page
      title: GetFollowersCursorResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    UserInfo:
      properties:
        userId:
          type: string
          title: Userid
          description: User ID
        isBlueVerified:
          type: boolean
          title: Isblueverified
          description: Blue verification status
        createdAt:
          type: string
          title: Createdat
          description: Account creation date
        createdAtDatetime:
          anyOf:
            - type: string
            - type: 'null'
          title: Createdatdatetime
          description: Account creation datetime in ISO format
        defaultProfile:
          type: boolean
          title: Defaultprofile
          description: Default profile flag
        defaultProfileImage:
          type: boolean
          title: Defaultprofileimage
          description: Default profile image flag
        description:
          type: string
          title: Description
          description: Bio description
        location:
          type: string
          title: Location
          description: Location
        fastFollowersCount:
          type: integer
          title: Fastfollowerscount
          description: Fast followers count
        favouritesCount:
          type: integer
          title: Favouritescount
          description: Likes count
        followersCount:
          type: integer
          title: Followerscount
          description: Followers count
        followingCount:
          type: integer
          title: Followingcount
          description: Following count
        hasCustomTimelines:
          type: boolean
          title: Hascustomtimelines
          description: Has custom timelines flag
        isTranslator:
          type: boolean
          title: Istranslator
          description: Is translator flag
        listedCount:
          type: integer
          title: Listedcount
          description: Listed count
        mediaCount:
          type: integer
          title: Mediacount
          description: Media count
        name:
          type: string
          title: Name
          description: Display name
        normalFollowersCount:
          type: integer
          title: Normalfollowerscount
          description: Normal followers count
        pinnedTweetIdsStr:
          anyOf:
            - items: {}
              type: array
            - type: 'null'
          title: Pinnedtweetidsstr
          description: Pinned tweet IDs
        possiblySensitive:
          type: boolean
          title: Possiblysensitive
          description: Possibly sensitive flag
        profileImageUrlHttps:
          type: string
          title: Profileimageurlhttps
          description: Profile image URL
        username:
          type: string
          title: Username
          description: Username
        statusesCount:
          type: integer
          title: Statusescount
          description: Tweets count
        translatorType:
          anyOf:
            - type: string
            - type: 'null'
          title: Translatortype
          description: Translator type
        verified:
          type: boolean
          title: Verified
          description: Legacy verification status
        verified_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Verified Type
          description: 'Verification badge type: blue, business, government, etc.'
          examples:
            - blue
            - business
            - government
        withheldInCountries:
          anyOf:
            - items: {}
              type: array
            - type: 'null'
          title: Withheldincountries
          description: Withheld in countries
        protected:
          type: boolean
          title: Protected
          description: Protected account flag
        url:
          anyOf:
            - type: string
            - type: 'null'
          title: Url
          description: User profile URL
        descriptionUrls:
          anyOf:
            - items: {}
              type: array
            - type: 'null'
          title: Descriptionurls
          description: Description URLs
        urls:
          anyOf:
            - items: {}
              type: array
            - type: 'null'
          title: Urls
          description: User URLs
        pinnedTweetIds:
          anyOf:
            - items: {}
              type: array
            - type: 'null'
          title: Pinnedtweetids
          description: Pinned tweet IDs
      type: object
      required:
        - userId
        - isBlueVerified
        - createdAt
        - defaultProfile
        - defaultProfileImage
        - description
        - location
        - fastFollowersCount
        - favouritesCount
        - followersCount
        - followingCount
        - hasCustomTimelines
        - isTranslator
        - listedCount
        - mediaCount
        - name
        - normalFollowersCount
        - possiblySensitive
        - profileImageUrlHttps
        - username
        - statusesCount
        - verified
        - protected
      title: UserInfo
      description: User information structure
    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
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````