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

# getSignaturesForAddress

> 指定したアドレスを含む確認済みトランザクションの署名を返します。提供された署名または最新の確認済みブロックから時間を遡って署名を返します

<Tip>
  高度なフィルタリング、ソート、およびトークンアカウント履歴には、代わりに [`getTransactionsForAddress`](/ja/rpc/gettransactionsforaddress) を使用してください。 `getSignaturesForAddress` は関連トークンアカウントを含むトランザクションを含まないことに注意してください。
</Tip>

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

<ParamField body="address" type="string" required>
  トランザクション履歴を取得するためのSolanaアカウントアドレス（ウォレット、トークン、プログラム、NFTなど）。
</ParamField>

<ParamField body="commitment" type="string">
  リクエストのコミットメントレベル。 `processed` コミットメントはサポートされていません。

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

<ParamField body="minContextSlot" type="number">
  リクエストが評価されることができる最小スロット。
</ParamField>

<ParamField body="limit" type="number">
  単一のリクエストで返される最大トランザクション署名数（1〜1,000）。
</ParamField>

<ParamField body="before" type="string">
  この署名より前のトランザクションを取得するためのページネーションパラメータ（時間が早い）。
</ParamField>

<ParamField body="until" type="string">
  特定の時間範囲に便利な、この署名に達するまでのトランザクションを取得。
</ParamField>


## OpenAPI

````yaml ja/openapi/rpc-http/getSignaturesForAddress.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: getSignaturesForAddress
      description: >-
        特定のSolanaアドレスに関与するアクティビティのトランザクション署名を強力なページネーションで取得します。この重要なAPIは、任意のSolanaウォレット、トークン、プログラム、NFTアドレスのトランザクション履歴を提供し、ステータス、タイミング、実行結果を伴う時系列のトランザクション署名を返します。ウォレットのトランザクション履歴作成、プログラム活動の監視、アドレス分析、およびSolanaブロックチェーン上の過去の操作を追跡する必要があるあらゆるアプリケーションに最適です。完全なトランザクション履歴へのアクセスのための柔軟なページネーションをサポートしています。
      operationId: getSignaturesForAddress
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - jsonrpc
                - id
                - method
                - params
              properties:
                jsonrpc:
                  type: string
                  enum:
                    - '2.0'
                  example: '2.0'
                  description: JSON-RPCプロトコルバージョン。
                  default: '2.0'
                id:
                  type: string
                  example: '1'
                  description: リクエストの一意の識別子。
                  default: '1'
                method:
                  type: string
                  enum:
                    - getSignaturesForAddress
                  example: getSignaturesForAddress
                  description: 呼び出すRPCメソッドの名前。
                  default: getSignaturesForAddress
                params:
                  type: array
                  description: 必要なアカウントアドレスとオプションの構成オブジェクトを含む配列。
                  default:
                    - Vote111111111111111111111111111111111111111
                  items:
                    oneOf:
                      - type: string
                        description: >-
                          トランザクション履歴を取得するためのSolanaアカウントアドレス（ウォレット、トークン、プログラム、NFTなど）。
                        example: Vote111111111111111111111111111111111111111
                      - type: object
                        description: トランザクション履歴取得をカスタマイズするための高度なクエリ構成。
                        properties:
                          commitment:
                            type: string
                            description: リクエストのコミットメントレベル。`processed`コミットメントはサポートされていません。
                            enum:
                              - confirmed
                              - finalized
                            example: finalized
                          minContextSlot:
                            type: integer
                            description: リクエストを評価できる最小スロット。
                            example: 1000
                          limit:
                            type: integer
                            description: 単一のリクエストで返すトランザクション署名の最大数（1-1,000）。
                            example: 1000
                          before:
                            type: string
                            description: この署名前のトランザクションを取得するためのページネーションパラメータ（時間的に前）。
                            example: >-
                              5h6xBEauJ3PK6SWCZ1PGjBvj8vDdWG3KpwATGy1ARAXFSDwt8GFXM7W5Ncn16wmqokgpiKRLuS83KUxyZyv2sUYv
                          until:
                            type: string
                            description: 特定の時間範囲に便利な、この署名が到達するまでトランザクションを取得します。
                            example: >-
                              3jweEauJ3PK6SWCZ1PGjBvj8vDdWG3KpwATGy1ARAXFSDwt8GFXM7W5Ncn16wmqokgpiKRLuS83KUxyZyv2sUYv
      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
                    example: '1'
                    description: リクエストに一致する識別子。
                  result:
                    type: array
                    description: トランザクション署名情報のリスト。
                    items:
                      type: object
                      description: 各トランザクション署名の詳細。
                      properties:
                        signature:
                          type: string
                          description: トランザクション署名をbase-58でエンコードした文字列。
                          example: >-
                            5h6xBEauJ3PK6SWCZ1PGjBvj8vDdWG3KpwATGy1ARAXFSDwt8GFXM7W5Ncn16wmqokgpiKRLuS83KUxyZyv2sUYv
                        slot:
                          type: integer
                          description: トランザクションを含むブロックを持つスロット。
                          example: 114
                        err:
                          oneOf:
                            - type: object
                              description: トランザクションが失敗した場合のエラー
                            - type: 'null'
                          description: トランザクションが失敗した場合のエラー、成功した場合はnull。
                          example: null
                        memo:
                          oneOf:
                            - type: string
                              description: トランザクションに関連づけられたメモ
                            - type: 'null'
                          description: トランザクションに関連づけられたメモ、または存在しない場合はnull。
                          example: null
                        blockTime:
                          oneOf:
                            - type: integer
                              description: 推定生成時間をUnixタイムスタンプで表現
                            - type: 'null'
                          description: 推定生成時間をUnixタイムスタンプ（エポックからの秒数）として、または利用できない場合はnull。
                          example: null
                        confirmationStatus:
                          oneOf:
                            - type: string
                              enum:
                                - processed
                                - confirmed
                                - finalized
                              description: トランザクションのクラスター確認ステータス
                            - type: 'null'
                          description: トランザクションのクラスター確認ステータス。
                          example: finalized
              examples:
                response:
                  value:
                    jsonrpc: '2.0'
                    id: 1
                    result:
                      - signature: >-
                          5h6xBEauJ3PK6SWCZ1PGjBvj8vDdWG3KpwATGy1ARAXFSDwt8GFXM7W5Ncn16wmqokgpiKRLuS83KUxyZyv2sUYv
                        slot: 114
                        err: null
                        memo: null
                        blockTime: null
                        confirmationStatus: finalized
            application/json; schema=examples/request:
              example:
                jsonrpc: '2.0'
                id: 1
                method: getSignaturesForAddress
                params:
                  - Vote111111111111111111111111111111111111111
                  - limit: 1
        '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キー。無料で[dashboard](https://dashboard.helius.dev/api-keys)から取得できます。

````