> ## 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 ja/openapi/rpc-http/getHighestSnapshotSlot.yaml POST /
openapi: 3.1.0
info:
  title: Solana RPC API
  version: 1.0.0
  description: >-
    高速なノードのブートストラップと台帳状態の再構築を可能にする、利用可能なSolanaブロックチェーンスナップショットに関する情報を取得するためのバリデーター同期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: デブネット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: Bad Request - 無効なリクエストパラメータまたは不正なリクエスト。
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32602
                  message: Invalid params
                id: '1'
        '401':
          description: Unauthorized - 無効または欠落したAPIキー。
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32001
                  message: Unauthorized
                id: '1'
        '429':
          description: Too Many Requests - レート制限を超えました。
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32005
                  message: Too many requests
                id: '1'
        '500':
          description: Internal Server Error - サーバー上のエラーが発生しました。
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32603
                  message: Internal error
                id: '1'
        '503':
          description: Service Unavailable - サービスが一時的に利用できません。
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32002
                  message: Service unavailable
                id: '1'
        '504':
          description: Gateway Timeout - リクエストがタイムアウトしました。
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32003
                  message: Gateway timeout
                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キー。無料で[dashboad](https://dashboard.helius.dev/api-keys)から取得できます。

````