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

# getLatestCompressionSignatures

> 最新のトランザクションで圧縮プログラムを使用したものの署名を返します。

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

<ParamField body="cursor" type="string">
  Solana圧縮トランザクション署名の大規模なセットをナビゲートするためのページネーションカーソル
</ParamField>

<ParamField body="limit" type="number">
  リクエストごとに返すSolana圧縮トランザクション署名の最大数
</ParamField>


## OpenAPI

````yaml ja/openapi/zk-compression/getLatestCompressionSignatures.yaml POST /
openapi: 3.0.3
info:
  title: Solana Compressed Asset Transaction Monitoring API
  description: |
    最近の圧縮NFTとトークンのトランザクションを監視するための高度なSolanaインデクサーです。
    この専門APIにより、開発者はSolanaブロックチェーン上の最新の圧縮アクティビティを追跡および分析でき、リアルタイムの圧縮資産の操作、
    ミント、転送、その他の圧縮関連のトランザクションに可視性を提供します。
    効率的なページネーションサポート付き。
  license:
    name: Apache-2.0
  version: 0.50.0
servers:
  - url: https://mainnet.helius-rpc.com
    description: メインネットRPCエンドポイント
  - url: https://devnet.helius-rpc.com
    description: デブネットRPCエンドポイント
security: []
paths:
  /:
    summary: getLatestCompressionSignatures
    post:
      description: >
        Solana圧縮操作の最新のトランザクションシグネチャを取得します。

        この監視エンドポイントは、Solanaブロックチェーン上の圧縮NFTとトークンに関与する最新のトランザクションシグネチャのページ分割リストを返し、そのタイムスタンプ

        とスロット情報を含みます。

        圧縮資産のアクティビティの追跡、市場分析、ウォレット履歴同期、Solanaエコシステム全体での圧縮関連トランザクションの監査に不可欠です。

        効率的なページネーションをサポートして圧縮アクティビティの連続監視を行います。
      operationId: getLatestCompressionSignatures
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
                - jsonrpc
                - id
                - method
                - params
              properties:
                jsonrpc:
                  type: string
                  description: JSON-RPCプロトコルのバージョンです。
                  enum:
                    - '2.0'
                  default: '2.0'
                id:
                  type: string
                  description: リクエストを識別するためのIDです。
                  default: '1'
                method:
                  type: string
                  description: 最近のSolana圧縮トランザクションシグネチャを取得するために呼び出すメソッドの名前です。
                  enum:
                    - getLatestCompressionSignatures
                  default: getLatestCompressionSignatures
                params:
                  type: object
                  default: {}
                  properties:
                    cursor:
                      type: string
                      nullable: true
                      description: Solana圧縮トランザクションシグネチャの大規模セットをナビゲートするためのページネーションカーソルです。
                    limit:
                      allOf:
                        - $ref: '#/components/schemas/Limit'
                      nullable: true
                      description: リクエストごとに返されるSolana圧縮トランザクションシグネチャの最大数です。
                  additionalProperties: false
        required: true
      responses:
        '200':
          description: 最新のSolana圧縮トランザクションシグネチャを正常に取得しました。
          content:
            application/json:
              schema:
                type: object
                required:
                  - context
                  - value
                properties:
                  context:
                    $ref: '#/components/schemas/Context'
                  value:
                    $ref: '#/components/schemas/PaginatedSignatureInfoList'
                additionalProperties: false
        '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:
    Limit:
      type: integer
      format: int64
      minimum: 0
      description: 単一リクエストで返すSolana圧縮トランザクションシグネチャの最大数です。
    Context:
      type: object
      required:
        - slot
      properties:
        slot:
          type: integer
          default: 100
          example: 100
          description: この圧縮シグネチャリクエストの現在のSolanaブロックチェーンのスロットです。
    PaginatedSignatureInfoList:
      type: object
      required:
        - items
      properties:
        cursor:
          type: string
          nullable: true
          description: 次のSolana圧縮トランザクションシグネチャセットを取得するためのページネーションカーソルです。
        items:
          type: array
          items:
            $ref: '#/components/schemas/SignatureInfo'
          description: メタデータを持つSolana圧縮NFTおよびトークントランザクションシグネチャの配列です。
    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'
    SignatureInfo:
      type: object
      required:
        - signature
        - slot
        - blockTime
      properties:
        blockTime:
          $ref: '#/components/schemas/UnixTimestamp'
          description: このSolana圧縮資産トランザクションが処理されたときのUnixタイムスタンプです。
        signature:
          $ref: '#/components/schemas/SerializableSignature'
          description: このSolana圧縮資産操作のためのユニークなトランザクションシグネチャです。
        slot:
          $ref: '#/components/schemas/UnsignedInteger'
          description: この圧縮資産トランザクションが含まれていたSolanaブロックチェーンスロットです。
    UnixTimestamp:
      type: integer
      description: Solana圧縮資産トランザクションが処理されたときのUnixタイムスタンプ（秒）です。
      default: 1714081554
      example: 1714081554
    SerializableSignature:
      type: string
      description: 圧縮関連の操作を特定し検証するために使用されるSolanaトランザクションシグネチャです。
      default: 5J8H5sTvEhnGcB4R8K1n7mfoiWUD9RzPVGES7e3WxC7c
      example: 5J8H5sTvEhnGcB4R8K1n7mfoiWUD9RzPVGES7e3WxC7c
    UnsignedInteger:
      type: integer
      default: 100
      example: 100
      description: Solanaブロックチェーンスロット番号を表す非負整数値です。
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api-key
      description: >-
        あなたのHelius
        APIキーです。[ダッシュボード](https://dashboard.helius.dev/api-keys)で無料で取得できます。

````