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

# getUsers

> Get public user information.



## OpenAPI

````yaml /openapi.yaml get /getUsers
openapi: 3.1.0
info:
  title: AlphaInsider
  version: '1.0'
  description: >-
    The official API and websocket documentation for
    [AlphaInsider.com](https://alphainsider.com/)
servers:
  - url: https://alphainsider.com/api
security: []
tags:
  - name: Introduction
  - name: Authentication
  - name: Users
  - name: Strategies
  - name: Subscriptions
  - name: Payments
  - name: Withdrawals
  - name: Timelines
  - name: Stocks
  - name: Trades
  - name: Webhooks
  - name: Bots
  - name: Websockets
paths:
  /getUsers:
    get:
      tags:
        - Users
      summary: getUsers
      description: Get public user information.
      operationId: getUsers
      parameters:
        - name: user_id[]
          in: query
          required: true
          schema:
            type: array
            description: Array of user IDs.
            maxItems: 100
            items:
              $ref: '#/components/schemas/user_id'
      responses:
        '200':
          description: Request was successful.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    $ref: '#/components/schemas/success'
                  response:
                    type: array
                    description: >-
                      Endpoint-specific response payload, or an error message
                      when `success` is false.
                    items:
                      type: object
                      properties:
                        user_id:
                          $ref: '#/components/schemas/user_id'
                        info:
                          type: object
                          description: Profile information object.
                          properties:
                            bio:
                              type: string
                              description: User profile biography.
                            x:
                              type: string
                              description: X/Twitter profile URL.
                            website:
                              type: string
                              description: Website URL.
                            youtube:
                              type: string
                              description: YouTube profile URL.
                            telegram:
                              type: string
                              description: Telegram profile URL.
                        updated_at:
                          $ref: '#/components/schemas/updated_at'
                        created_at:
                          $ref: '#/components/schemas/created_at'
                        post_count:
                          type: string
                          description: Number of public posts.
                        like_count:
                          type: string
                          description: Number of likes.
                        subscriber_count:
                          type: string
                          description: Number of subscribers.
                        strategy_count:
                          type: string
                          description: Number of strategies.
              examples:
                '200':
                  value:
                    success: true
                    response:
                      - user_id: user_1
                        info:
                          bio: ''
                          x: ''
                          website: ''
                          youtube: ''
                          telegram: ''
                        updated_at: '2024-10-15T19:34:54.549Z'
                        created_at: '2024-08-30T13:40:27.343Z'
                        post_count: '1'
                        like_count: '0'
                        subscriber_count: '0'
                        strategy_count: '5'
        '400':
          $ref: '#/components/responses/400'
components:
  schemas:
    user_id:
      type: string
      description: AlphaInsider user identifier.
    success:
      type: boolean
      description: True when the request succeeded.
    updated_at:
      type: string
      format: date-time
      description: Last update timestamp.
    created_at:
      type: string
      format: date-time
      description: Creation timestamp.
  responses:
    '400':
      description: Request failed.
      content:
        application/json:
          schema:
            type: object
            properties:
              success:
                type: boolean
                description: False when the request failed.
              response:
                type: string
                description: Error message.
          examples:
            '400':
              value:
                success: false
                response: Request failed.

````