> ## 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 ko/openapi/zk-compression/getLatestCompressionSignatures.yaml POST /
openapi: 3.0.3
info:
  title: Solana 압축 자산 거래 모니터링 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: Devnet 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)에서 무료로
        받을 수 있습니다.

````