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

# List admins

> Get a paginated list of administrators



## OpenAPI

````yaml docs/api-reference/general-monitoring.yaml get /admins/list
openapi: 3.0.3
info:
  title: Zochil General Monitoring API
  description: >
    Zochil platform general monitoring API for system administration.


    ## Authentication


    All endpoints require authentication via the `access-token` header obtained
    through login.
  version: 1.0.0
  contact:
    name: Zochil Support
    email: info@zochil.mn
  license:
    name: Proprietary
servers:
  - url: https://api.zochil.io/v3/monitoring
    description: API server
security:
  - AccessToken: []
tags:
  - name: Authentication
    description: Admin authentication and session management
  - name: Admin Management
    description: System administrator management
  - name: Profile
    description: Admin profile management
paths:
  /admins/list:
    get:
      tags:
        - Admin Management
      summary: List admins
      description: Get a paginated list of administrators
      parameters:
        - name: page
          in: query
          required: false
          schema:
            type: integer
            default: 1
          description: Page number for pagination
      responses:
        '200':
          description: List of administrators
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Admin'
                  pagination:
                    $ref: '#/components/schemas/Pagination'
components:
  schemas:
    Admin:
      type: object
      properties:
        id:
          type: string
        username:
          type: string
        email:
          type: string
        is_super:
          type: boolean
        roles:
          type: array
          items:
            type: string
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    Pagination:
      type: object
      properties:
        page:
          type: integer
        limit:
          type: integer
        total:
          type: integer
        totalPages:
          type: integer
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token

````