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

# getStakeMinimumDelegation

> 위임 최소 스테이크를 lamports 단위로 반환합니다.

## 요청 매개변수

<ParamField body="commitment" type="string">
  요청에 대한 커밋 수준입니다.

  * `confirmed`
  * `finalized`
  * `processed`
</ParamField>


## OpenAPI

````yaml ko/openapi/rpc-http/getStakeMinimumDelegation.yaml POST /
openapi: 3.1.0
info:
  title: Solana RPC API
  version: 1.0.0
  description: >-
    Solana의 지분 증명 네트워크에 참여하고 보상을 받기 위해 필요한 최소 SOL 위임 임계값을 검색하는 Staking
    requirements API입니다.
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
  - url: https://mainnet.helius-rpc.com
    description: 메인넷 RPC 엔드포인트
  - url: https://devnet.helius-rpc.com
    description: Devnet RPC 엔드포인트
security: []
paths:
  /:
    post:
      tags:
        - RPC
      summary: getStakeMinimumDelegation
      description: |
        Solana 스테이킹에 적극적으로 참여하기 위해 필요한 최소 SOL 위임 금액을 검색합니다.
        이 중요한 스테이킹 API는 Solana 네트워크의 검증자에게 유효한 스테이크 계정을 생성하고 위임하기 위해
        필요한 현재 임계값 금액을 제공합니다. 최소 위임 요건은 스테이크 계정의 파편화를 방지하고 검증자
        투표 프로세스의 효율성을 보장하는 핵심 경제 매개변수입니다. Solana 사용자에게 위임 기능을 제공하는
        스테이킹 애플리케이션, 지갑 통합, 검증자 대시보드 및 모든 서비스에 중요합니다.
      operationId: getStakeMinimumDelegation
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                jsonrpc:
                  type: string
                  enum:
                    - '2.0'
                  description: JSON-RPC 프로토콜 버전입니다.
                  example: '2.0'
                  default: '2.0'
                id:
                  type: string
                  description: 요청에 대한 고유 식별자입니다.
                  example: '1'
                  default: '1'
                method:
                  type: string
                  enum:
                    - getStakeMinimumDelegation
                  description: 호출할 RPC 메서드의 이름입니다.
                  example: getStakeMinimumDelegation
                  default: getStakeMinimumDelegation
                params:
                  type: array
                  description: 옵션 구성 개체입니다.
                  items:
                    type: object
                    properties:
                      commitment:
                        type: string
                        description: 요청에 대한 커밋 수준입니다.
                        enum:
                          - confirmed
                          - finalized
                          - processed
                        example: finalized
      responses:
        '200':
          description: 스테이크 최소 위임을 성공적으로 검색했습니다.
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                    description: JSON-RPC 프로토콜 버전입니다.
                    enum:
                      - '2.0'
                    example: '2.0'
                  id:
                    type: string
                    description: 요청과 일치하는 식별자입니다.
                    example: '1'
                  result:
                    type: object
                    description: 컨텍스트 및 최소 위임 값입니다.
                    properties:
                      context:
                        type: object
                        description: 응답의 컨텍스트입니다.
                        properties:
                          slot:
                            type: integer
                            description: 데이터가 검색된 슬롯입니다.
                            example: 501
                      value:
                        type: integer
                        description: >-
                          Solana 네트워크에서 활성 스테이크 위임을 생성하기 위해 필요한 최소 SOL 금액(램포트
                          기준)입니다.
                        example: 1000000000
              examples:
                success:
                  value:
                    jsonrpc: '2.0'
                    id: '1'
                    result:
                      context:
                        slot: 501
                      value: 1000000000
        '400':
          description: 잘못된 요청 - 잘못된 요청 매개변수 또는 잘못된 형식의 요청입니다.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32602
                  message: 잘못된 매개변수
                id: '1'
        '401':
          description: 권한 없음 - 잘못된 API 키 또는 누락된 API 키입니다.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32001
                  message: 권한 없음
                id: '1'
        '429':
          description: 요청 너무 많음 - 레이트 제한 초과입니다.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32005
                  message: 요청이 너무 많음
                id: '1'
        '500':
          description: 내부 서버 오류 - 서버에서 오류가 발생했습니다.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32603
                  message: 내부 오류
                id: '1'
        '503':
          description: 서비스 사용 불가 - 서비스가 일시적으로 사용 불가능합니다.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32002
                  message: 서비스 사용 불가
                id: '1'
        '504':
          description: 게이트웨이 시간 초과 - 요청 시간 초과입니다.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32003
                  message: 게이트웨이 시간 초과
                id: '1'
      security:
        - ApiKeyQuery: []
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        jsonrpc:
          type: string
          description: JSON-RPC 프로토콜 버전입니다.
          enum:
            - '2.0'
          example: '2.0'
        error:
          type: object
          properties:
            code:
              type: integer
              description: 오류 코드입니다.
              example: -32602
            message:
              type: string
              description: 오류 메시지입니다.
            data:
              type: object
              description: 오류에 대한 추가 데이터입니다.
        id:
          type: string
          description: 요청과 일치하는 식별자입니다.
          example: '1'
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api-key
      description: >-
        귀하의 Helius API 키입니다. [대시보드](https://dashboard.helius.dev/api-keys)에서 무료로
        받을 수 있습니다.

````