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

# Get verification

> Retrieves a specific user verification

### Required Scopes

```
users:read
```

### Rate Limit

10 requests per second


## OpenAPI

````yaml GET /users/{query}
openapi: 3.1.0
info:
  title: Multex Discord Bot API
  version: 1.0.0
  description: API documentation for Multex Discord bot
servers:
  - url: https://api.multex.tech
    description: Development server
security: []
paths:
  /users/{query}:
    get:
      tags:
        - User Management
      summary: Get Single Verification
      description: Retrieves a specific user verification
      parameters:
        - name: query
          in: path
          required: true
          schema:
            type: string
          description: Roblox ID, Discord ID, or Username
      responses:
        '200':
          description: User retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  data:
                    type: object
                    properties:
                      discordId:
                        type: string
                      robloxId:
                        type: string
                      username:
                        type: string
                      pastUsers:
                        type: array
                        items:
                          type: object
                          properties:
                            robloxId:
                              type: string
                            username:
                              type: string
        '400':
          description: Bad request - missing required parameters
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: Bad request - missing required parameters
        '401':
          description: Unauthorized - invalid API key
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: Unauthorized - invalid API key
        '404':
          description: User not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: User not found
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for accessing protected guild endpoints

````