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

# Get system maintenance status

> **Limit: 1 request per 1 second per IP address**

`GET /v1/public/system_info`

Returns the current system status for Orderly. `status = 0` indicates normal operation. `status = 2` indicates maintenance mode.



## OpenAPI

````yaml orderly.openapi get /v1/public/system_info
openapi: 3.0.1
info:
  title: EVM
  description: ''
  version: 1.0.0
servers:
  - url: https://api.orderly.org
    description: Mainnet
  - url: https://testnet-api.orderly.org
    description: Testnet
security: []
tags:
  - name: public
  - name: private
paths:
  /v1/public/system_info:
    get:
      tags:
        - public
      summary: Get system maintenance status
      description: >-
        **Limit: 1 request per 1 second per IP address**


        `GET /v1/public/system_info`


        Returns the current system status for Orderly. `status = 0` indicates
        normal operation. `status = 2` indicates maintenance mode.
      parameters: []
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SystemInfoResponse'
      deprecated: false
components:
  schemas:
    SystemInfoResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - msg
                - status
              properties:
                status:
                  description: >-
                    System status code. `0` means normal operation and `2` means
                    maintenance mode.
                  type: number
                  example: 0
                scheduled_maintenance:
                  description: Scheduled maintenance window, when available.
                  type: object
                  properties:
                    startTime:
                      description: Scheduled maintenance start time in milliseconds.
                      type: number
                      example: 1618822380000
                    endTime:
                      description: Scheduled maintenance end time in milliseconds.
                      type: number
                      example: 1618822440000
                msg:
                  description: Human-readable status message.
                  type: string
    BasicResponse:
      required:
        - success
      type: object
      properties:
        success:
          description: Indicates whether the request was successful.
          type: boolean
          example: true
        timestamp:
          description: Server timestamp in milliseconds.
          type: integer
          example: 1702989203989

````