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

# Get system configuration and discovery info



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/info
openapi: 3.1.0
info:
  title: ekiden-gateway
  description: >-
    API Gateway and WebSocket proxy based on Axum and Utoipa, handling auth,
    rate limiting, and connection buffering.
  license:
    name: ''
  version: 0.1.1
servers:
  - url: https://api.ekiden.fi/
    description: Production
  - url: https://api.staging.ekiden.fi/
    description: Staging
  - url: https://api.dev.ekiden.fi/
    description: Development
  - url: http://localhost:4020/
    description: Local
security: []
paths:
  /api/v1/info:
    get:
      tags:
        - System
      summary: Get system configuration and discovery info
      operationId: get_system_info
      responses:
        '200':
          description: System info retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SystemInfo'
components:
  schemas:
    SystemInfo:
      type: object
      required:
        - build_id
        - aptos_network
        - perpetual_addr
        - quote_asset_metadata
        - runtime_manifest_generation
        - runtime_manifest_phase
      properties:
        aptos_network:
          type: string
        build_id:
          type: string
          description: >-
            Build identifier for the running backend (e.g. git commit SHA).


            This is used for milestone acceptance verification without
            disclosing source code.
        perpetual_addr:
          type: string
        quote_asset_metadata:
          type: string
        runtime_manifest_generation:
          type: integer
          format: int64
          minimum: 0
        runtime_manifest_phase:
          type: string

````