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

# Get Configuration Parameters

> Retrieve values of configuration parameters.



## OpenAPI

````yaml /openapi/generated-api-methods.json GET /v1/config
openapi: 3.1.0
info:
  title: Generated API methods
  version: 1.0.0
  description: Generated from imported ApiMethodV2 blocks.
servers:
  - url: https://{sql_node}
    variables:
      sql_node:
        default: sql_node
  - url: http://oc1-lts0:9090
security: []
paths:
  /v1/config:
    get:
      tags:
        - System Information REST Endpoints
      summary: Get Configuration Parameters
      description: Retrieve values of configuration parameters.
      operationId: getSystemInformationRestEndpointsGetConfigurationParameters
      parameters: []
      responses:
        '200':
          description: Response
          content:
            text/plain:
              schema:
                type: string
              examples:
                response:
                  value: |-
                    {
                      "siloType": "xg::runtime::physicalSiloSet_t",
                      "tlbfsInfo.enabled": "false",
                      "tlbfsInfo.mountPoint": "/mnt/name/hugepages1G",
                      "tlbfsInfo.hugePageSize": "1073741824",
                      "tlbfsInfo.hugePageCount": "512",
                      "memory.warningHpMemoryUsageRatio": "0.80000000000000004",
                      "memory.preferredHpMemoryUsageRatio": "0.94999999999999996",
                      "memory.warningHeapMemoryUsageRatio": "0.90000000000000002",
                      "silos.numSilos": "2",
                      "silos.coreSets.computeCoreMask": "0b111111111111000",
                      "silos.coreSets.ioCoreMask": "0b1000000111100000",
                      "silos.coreSets.networkCoreMask": "0b10000000000111100",
                      "silos.coreSets.generalCoreMask": "0b100000000000000111",
                      "gdsClientParameters_t.batchTimer": "150000000n",
                      "gdsClientParameters_t.maxBatchCount": "4096",
                      "ports.adminsecure": "18500",
                      "ports.data": "16500",
                      "ports.hsi": "16900",
                      "ports.ingress": "15300",
                      "ports.rest": "8000",
                      "ports.sql": "3070",
                      "ports.adminopen": "18000"
                      "operatorvm.vmProtocolParameters.vmClusterRaftFileParameters.fileName": "sql0-vmCluster.raft"
                    }
      servers:
        - url: http://oc1-lts0:9090
      x-codeSamples:
        - lang: curl
          label: curl
          source: |-
            curl --location --request GET 'http://oc1-lts0:9090/v1/config' \
            --header 'Accept: application/json'

````