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

# getSignatureStatuses

> 署名のリストのステータスを返します。各署名はトランザクションの最初の署名であるtxidでなければなりません。

## リクエストパラメータ

<ParamField body="transaction" type="array" required>
  トランザクション署名の配列（最大256）、base-58でエンコードされた文字列。
</ParamField>

<ParamField body="searchTransactionHistory" type="boolean">
  ステータスキャッシュから古い履歴トランザクションを見つけるために検索を有効にします。
</ParamField>


## OpenAPI

````yaml ja/openapi/rpc-http/getSignatureStatuses.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: Devnet RPCエンドポイント
security: []
paths:
  /:
    post:
      tags:
        - RPC
      summary: getSignatureStatuses
      description: >-
        単一の効率的なバッチリクエストで複数のSolanaトランザクションの確認ステータスを取得します。この必須のトランザクショントラッキングAPIは、アプリケーションがトランザクションの進行状況を、初期提出から最終確認までSolanaコンセンサスプロセスを通じて監視できるようにします。処理スロット、確認カウント、エラーの詳細、最終確認レベルを含むトランザクションステータスに関する詳細な情報を返します。ウォレット、取引所、決済プロセッサ、トランザクションがブロックチェーン上で正常に決済されたことを確認する必要があるアプリケーションに不可欠です。
      operationId: getSignatureStatuses
      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:
                    - getSignatureStatuses
                  description: 呼び出すRPCメソッドの名前。
                  example: getSignatureStatuses
                  default: getSignatureStatuses
                params:
                  type: array
                  description: トランザクションシグネチャとオプションの設定オブジェクトを含む配列。
                  default:
                    - - >-
                        5VERv8NMvzbJMEkV8xnrLkEaWRtSz9CosKDYjCJjBRnbJLgp8uirBgmQpjKhoR4tjF3ZpRzrFmBV6UjKdiSZkQUW
                  items:
                    oneOf:
                      - type: array
                        description: ベース58でエンコードされた最大256のトランザクションシグネチャの配列。
                        items:
                          type: string
                          example: >-
                            5VERv8NMvzbJMEkV8xnrLkEaWRtSz9CosKDYjCJjBRnbJLgp8uirBgmQpjKhoR4tjF3ZpRzrFmBV6UjKdiSZkQUW
                      - type: object
                        description: 設定オプション。
                        properties:
                          searchTransactionHistory:
                            type: boolean
                            description: より古い履歴トランザクションを見つけるために最近のステータスキャッシュを超えての検索を有効にします。
                            example: true
      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
                        properties:
                          slot:
                            type: integer
                            description: データが取得されたスロット。
                            example: 82
                      value:
                        type: array
                        description: トランザクションシグネチャステータスのリスト。
                        items:
                          oneOf:
                            - type: 'null'
                              description: トランザクションが不明な場合はnull。
                            - type: object
                              properties:
                                slot:
                                  type: integer
                                  description: このトランザクションがブロックに含まれたSolanaブロックチェーンのスロット番号。
                                  example: 48
                                confirmations:
                                  oneOf:
                                    - type: integer
                                      description: >-
                                        このトランザクションが処理された後に確認されたブロック数（完全に最終的に確定された場合はnull）。
                                    - type: 'null'
                                      description: トランザクションが最大の最終性（ルート化）に達したことを示すnull。
                                  example: 48
                                err:
                                  oneOf:
                                    - type: object
                                      description: トランザクションの実行中に失敗した場合の詳細を含むエラーオブジェクト。
                                    - type: 'null'
                                      description: トランザクションがエラーなしで正常に実行されたことを示すnull。
                                  example: null
                                confirmationStatus:
                                  type: string
                                  enum:
                                    - processed
                                    - confirmed
                                    - finalized
                                  description: >-
                                    Solanaネットワーク上のトランザクションの現在の最終化ステータス（processed
                                    → confirmed → finalized）。
                                  example: finalized
              examples:
                responseExample:
                  value:
                    jsonrpc: '2.0'
                    id: '1'
                    result:
                      context:
                        slot: 82
                      value:
                        - slot: 48
                          confirmations: 48
                          err: null
                          confirmationStatus: finalized
                        - null
        '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)から取得できます。

````