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

# List Servers

> Retrieve a list of all servers you have access to.

Mendapatkan daftar semua server yang Anda miliki aksesnya.

Mendapatkan daftar semua server yang akun Anda miliki aksesnya.

Endpoint ini akan menampilkan informasi ringkas mengenai server, termasuk UUID, nama, node tempat server berada, dan statusnya saat ini.


## OpenAPI

````yaml GET /
openapi: 3.0.0
info:
  title: Arqonara Global API
  version: 1.0.0
  description: Dokumentasi API lengkap untuk Client Arqonara (Account & Server Management).
servers:
  - url: https://panel.arqonara.com/api/client
    description: Client API
security:
  - bearerAuth: []
paths:
  /:
    get:
      tags:
        - Servers
      summary: List Servers
      description: |-
        Retrieve a list of all servers you have access to.

        Mendapatkan daftar semua server yang Anda miliki aksesnya.
      operationId: list-servers
      responses:
        '200':
          description: List of Servers
          content:
            application/json: {}
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````