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

# Get User Info

> Get User Info



## OpenAPI

````yaml openapi/twitter-user-batch_01.json GET /twitter/user/info
openapi: 3.0.3
info:
  title: Twitter API
  version: 1.0.0
  description: Twitter data API, providing endpoints for user and tweet information.
servers:
  - url: https://api.aisa.one/apis/v1
security:
  - BearerAuth: []
paths:
  /twitter/user/info:
    get:
      tags:
        - https://docs.twitterapi.io/api-reference/endpoint/get_user_by_username
      summary: Get User Info
      parameters:
        - name: userName
          in: query
          required: true
          schema:
            type: string
          description: The screen name of the user
      responses:
        '200':
          description: User information
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserInfoResponse'
components:
  schemas:
    UserInfoResponse:
      type: object
      properties:
        status:
          type: string
          enum:
            - success
            - error
        msg:
          type: string
        data:
          type: object
          additionalProperties: true
          description: User profile object returned by TwitterAPI.io.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````