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

# Get Users to Monitor Tweet

> Get the list of users being monitored for real-time tweets. Returns all users that have been added for tweet monitoring. Please ref:https://twitterapi.io/twitter-stream



## OpenAPI

````yaml GET /oapi/x_user_stream/get_user_to_monitor_tweet
openapi: 3.0.1
info:
  title: TwitterAPI.io the most stable/fastest/cheapest twitter api.
  description: Provide the most stable/fastest/cheapest twitter api.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.twitterapi.io
security:
  - ApiKeyAuth: []
paths:
  /oapi/x_user_stream/get_user_to_monitor_tweet:
    get:
      description: >-
        Get the list of users being monitored for real-time tweets. Returns all
        users that have been added for tweet monitoring. Please
        ref:https://twitterapi.io/twitter-stream
      responses:
        '200':
          description: List of monitored users
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    description: Status of the request.success or error
                    enum:
                      - success
                      - error
                  msg:
                    type: string
                    description: Message of the request
                  data:
                    type: array
                    description: List of monitored users
                    items:
                      type: object
                      properties:
                        id_for_user:
                          type: string
                          description: >-
                            Unique identifier for this monitoring entry. Use
                            this ID to remove the user from monitoring.
                        x_user_id:
                          type: integer
                          description: Twitter user ID
                        x_user_name:
                          type: string
                          description: Twitter display name
                        x_user_screen_name:
                          type: string
                          description: Twitter handle/screen name
                        is_monitor_tweet:
                          type: integer
                          description: Whether tweet monitoring is enabled (1=yes, 0=no)
                        is_monitor_profile:
                          type: integer
                          description: Whether profile monitoring is enabled (1=yes, 0=no)
                        monitor_tweet_config_status:
                          type: integer
                          description: Tweet monitoring configuration status
                        monitor_profile_config_status:
                          type: integer
                          description: Profile monitoring configuration status
                        created_at:
                          type: string
                          description: When the monitoring was created
                required:
                  - status
                  - msg
        '400':
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````