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

# Get Network Information

> Retrieve blockchain network details including current height



## OpenAPI

````yaml /openapi.json get /api/v1/lsps1/network_info
openapi: 3.1.0
info:
  title: Kaleidoswap RGB-LSP API
  description: API for managing swaps and channels
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/lsps1/network_info:
    get:
      tags:
        - lsps1
      summary: Get Network Info
      description: >-
        Get network information including current blockchain height and network
        type.
      operationId: get_network_info_api_v1_lsps1_network_info_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NetworkInfoResponse'
components:
  schemas:
    NetworkInfoResponse:
      properties:
        network:
          $ref: '#/components/schemas/BitcoinNetwork'
        height:
          type: integer
          title: Height
          example: 805434
      type: object
      required:
        - network
        - height
      title: NetworkInfoResponse
    BitcoinNetwork:
      type: string
      enum:
        - Mainnet
        - Testnet
        - Signet
        - Regtest
      title: BitcoinNetwork

````