> ## 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.

# getHighestSnapshotSlot

> 노드가 스냅샷을 보유한 가장 높은 슬롯 정보를 반환합니다.

이는 전체 스냅샷 슬롯을 기반으로 가장 높은 전체 스냅샷 슬롯과 가장 높은 증분 스냅샷 슬롯을 찾습니다.


## OpenAPI

````yaml ko/openapi/rpc-http/getHighestSnapshotSlot.yaml POST /
openapi: 3.1.0
info:
  title: Solana RPC API
  version: 1.0.0
  description: >-
    검증자 동기화 API로, 빠른 노드 부트스트래핑과 원장 상태 복원을 가능하게 하는 사용 가능한 Solana 블록체인 스냅샷에 대한 정보를
    가져옵니다.
  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: getHighestSnapshotSlot
      description: |
        검증자 부트스트래핑을 위한 최신 사용 가능한 Solana 블록체인 스냅샷에 대한 정보를 검색합니다.
        이 노드 동기화 API는 이 RPC 엔드포인트에 스냅샷 데이터가 
        있는 가장 높은 슬롯을 반환합니다. 스냅샷은 블록체인 상태의 시점별 아카이브로, 새 검증자가 
        전체 거래 기록을 재생하지 않고도 빠르게 부트스트래핑할 수 있도록 합니다. 응답에는 전체 
        및 증분 스냅샷 정보가 포함되어 있으며, 전체 스냅샷은 완전한 원장 상태를 포함하고 증분 
        스냅샷은 마지막 전체 스냅샷 이후의 상태 변경만을 포함합니다. 새로운 노드를 부트스트래핑하는 
        검증자 운영자, 네트워크 모니터링 도구 및 네트워크 전반에 걸친 스냅샷 가용성을 추적하여 
        빠른 검증자 배포 및 복구 작업을 촉진하는 서비스에 필수적입니다.
      operationId: getHighestSnapshotSlot
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                jsonrpc:
                  type: string
                  description: JSON-RPC 프로토콜 버전입니다.
                  enum:
                    - '2.0'
                  example: '2.0'
                  default: '2.0'
                id:
                  type: string
                  description: 요청에 대한 고유 식별자입니다.
                  example: '1'
                  default: '1'
                method:
                  type: string
                  description: 호출할 RPC 메서드의 이름입니다.
                  enum:
                    - getHighestSnapshotSlot
                  example: getHighestSnapshotSlot
                  default: getHighestSnapshotSlot
      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: 이 노드에서 최신 사용 가능한 Solana 블록체인 스냅샷 정보입니다.
                    properties:
                      full:
                        type: integer
                        description: 이 노드에서 전체 블록체인 상태 스냅샷이 가능한 가장 높은 Solana 슬롯입니다.
                        example: 100
                      incremental:
                        type: integer
                        nullable: true
                        description: 전체 스냅샷에 기반한 증분 상태 델타 스냅샷이 가능한 가장 높은 Solana 슬롯입니다.
                        example: 110
        '400':
          description: 잘못된 요청 - 잘못된 요청 매개변수 또는 잘못된 요청입니다.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32602
                  message: 잘못된 매개변수
                id: '1'
        '401':
          description: 허가되지 않음 - 유효하지 않거나 누락된 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)에서 무료로
        하나를 얻을 수 있습니다.

````