> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chainstream.io/llms.txt
> Use this file to discover all available pages before exploring further.

# レッドパケット - 受取記録

> レッドパケットの受取記録を確認



## OpenAPI

````yaml /jp/api-reference/openapi-data-jp.yaml GET /v2/redpacket/{id}/claims
openapi: 3.1.0
info:
  title: Services API
  description: Services API
  contact:
    name: AI
    email: ai@sx.ai
  license:
    name: MIT
  version: '1.0'
servers:
  - url: https://api.chainstream.io
    description: Production
security:
  - bearer_auth: []
  - api_key_auth: []
tags:
  - name: Blockchain
    description: ブロックチェーン関連の操作
  - name: Token
    description: トークン関連の操作
  - name: Trade
    description: 取引関連の操作
  - name: Wallet
    description: ウォレット関連の操作
  - name: Dex
    description: DEX 関連の操作
  - name: Ranking
    description: ランキング関連の操作
  - name: DexPool
    description: DEX プール関連の操作
  - name: Watchlist
    description: ウォッチリスト関連の操作
  - name: KYT
    description: KYT 関連の操作
  - name: Webhook
    description: Webhook 関連の操作
  - name: RedPacket
    description: レッドパケット関連の操作
  - name: IPFS
    description: IPFS 関連の操作
  - name: DexScreener
    description: DexScreener 関連の操作
paths:
  /v2/redpacket/{id}/claims:
    get:
      tags:
        - RedPacket
      summary: レッドパケット - 受取記録
      description: レッドパケットの受取記録を確認
      operationId: get.claims
      parameters:
        - name: id
          in: path
          description: レッドパケット識別子
          required: true
          schema:
            type: string
          example: Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB
        - name: cursor
          in: query
          description: ページネーションカーソル
          required: false
          schema:
            type: string
          example: cursor_abc
        - name: limit
          in: query
          description: ページあたりの結果数
          required: false
          schema:
            type: integer
            format: int64
          example: 20
        - name: direction
          in: query
          description: ページネーション方向
          required: false
          schema:
            oneOf:
              - $ref: '#/components/schemas/PageDirection'
            default: next
          example: next
      responses:
        '200':
          description: 成功レスポンス
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RedPacketClaimsPage'
components:
  schemas:
    PageDirection:
      type: string
      description: Pagination direction
      enum:
        - next
        - prev
    RedPacketClaimsPage:
      type: object
      description: Paginated red packet claims response
      required:
        - total
        - hasNextPage
        - records
      properties:
        endCursor:
          type:
            - string
            - 'null'
          description: 現在のページの終了カーソル
        hasNextPage:
          type: boolean
          description: 次のページがあるかどうか
        records:
          type: array
          items:
            $ref: '#/components/schemas/RedPacketClaim'
          description: レッドパケット受取リスト
        startCursor:
          type:
            - string
            - 'null'
          description: 現在のページの開始カーソル
        total:
          type: integer
          format: int64
          description: 受取の総件数
    RedPacketClaim:
      type: object
      description: Red packet claim record
      required:
        - packetId
        - claimer
        - mint
        - amount
      properties:
        amount:
          type: string
          description: レッドパケット合計金額
          example: '100000000'
        chain:
          type:
            - string
            - 'null'
          description: レッドパケットのブロックチェーンネットワーク
          example: sol
        claimedAt:
          type:
            - integer
            - 'null'
          format: int64
          description: 受取タイムスタンプ
          example: 1717334400000
        claimer:
          type: string
          description: 受取者のウォレットアドレス
          example: Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB
        creator:
          type:
            - string
            - 'null'
          description: 作成者のウォレットアドレス
          example: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
        mint:
          type: string
          description: トークンミントアドレス
          example: Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB
        packetId:
          type: string
          description: レッドパケットのオンチェーン ID
          example: Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB
        txHash:
          type:
            - string
            - 'null'
          description: トランザクションハッシュ
          example: 5UfDuX7hXbL3mFfPdq1pymNHM...
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    api_key_auth:
      type: apiKey
      in: header
      name: X-API-KEY

````